(self)
| 64 | #def __repr__(self): |
| 65 | # raise NotImplementedError() |
| 66 | def extract_solution(self): |
| 67 | SOLUTIONS[:] = self.solutions |
| 68 | return revert_solution(self.best_plan, self.best_cost, self.evaluations) |
| 69 | def export_summary(self): # TODO: log, etc... |
| 70 | # TODO: SOLUTIONS |
| 71 | #status = SUCCEEDED if self.is_solved() else FAILED # TODO: INFEASIBLE, OPTIMAL |
no test coverage detected