(self)
| 54 | def has_solution(self): |
| 55 | return is_plan(self.best_plan) |
| 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): |
no test coverage detected