Example #1
0
 def __init__(self, name, testcases, *, infile, outfile, progpath,
              compiler_flags, comp_method):
     RunProgramProblemBase.__init__(self, name, testcases)
     self.infile = infile
     self.outfile = outfile
     self._progpath = progpath
     self._compiler_flags = compiler_flags
     self.comp_method = comp_method
Example #2
0
 def __init__(self, name, testcases, *, infile, progpath,
              compiler_flags):
     RunProgramProblemBase.__init__(self, name, testcases)
     self.infile = infile
     self._progpath = progpath
     self._compiler_flags = compiler_flags