(self)
| 56 | def is_solved(self): |
| 57 | return self.has_solution() and (self.best_cost <= self.success_cost) |
| 58 | def elapsed_time(self): |
| 59 | return elapsed_time(self.start_time) |
| 60 | def is_timeout(self): |
| 61 | return (self.max_time <= self.elapsed_time()) or not check_memory(self.max_memory) |
| 62 | def is_terminated(self): |
no test coverage detected