Public interface for single task evaluation.
(self, task: Task)
| 93 | raise NotImplementedError |
| 94 | |
| 95 | async def eval(self, task: Task) -> Optional[Task]: |
| 96 | """Public interface for single task evaluation.""" |
| 97 | raise NotImplementedError |
| 98 | |
| 99 | async def stats(self) -> Optional[Stats]: |
| 100 | """Calculate current overall statistics.""" |
no outgoing calls