Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyene committed Dec 31, 2023
1 parent 0c87910 commit 99368d0
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions dmoj/graders/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,8 @@ def grade(self, case: TestCase) -> Result:
def _generate_binary(self) -> BaseExecutor:
raise NotImplementedError

<<<<<<< HEAD
def abort_grading(self) -> None:
self._abort_requested = True
if self._current_proc:
try:
self._current_proc.kill()
except OSError:
pass

def _resolve_testcases(self, cfg, batch_no=0) -> List[BaseTestCase]:
cases: List[BaseTestCase] = []
=======
def _resolve_testcases(self, cfg, batch_no=0):
cases = []
>>>>>>> 662a3127 (judge: implement instant aborts)
for case_config in cfg:
if 'batched' in case_config.raw_config:
self._batch_counter += 1
Expand Down

0 comments on commit 99368d0

Please sign in to comment.