| 69 | } |
| 70 | |
| 71 | double _assignment_cost ( |
| 72 | const matrix<double>& cost, |
| 73 | const py::list& assignment |
| 74 | ) |
| 75 | { |
| 76 | return assignment_cost(cost, python_list_to_vector<long>(assignment)); |
| 77 | } |
| 78 | |
| 79 | // ---------------------------------------------------------------------------------------- |
| 80 |
nothing calls this directly
no test coverage detected