Single iteration data point.
| 9 | |
| 10 | @dataclass(slots=True) |
| 11 | class _Datum: |
| 12 | """ |
| 13 | Single iteration data point. |
| 14 | """ |
| 15 | |
| 16 | current_cost: int |
| 17 | current_feas: bool |
| 18 | candidate_cost: int |
| 19 | candidate_feas: bool |
| 20 | best_cost: int |
| 21 | best_feas: bool |
| 22 | |
| 23 | |
| 24 | class Statistics: |
no outgoing calls
no test coverage detected