Compares plots generated by ``plot_solution``.
()
| 21 | |
| 22 | @img_comp(["plot_solution", "plot_solution_with_customers"], **IMG_KWARGS) |
| 23 | def test_plot_solution(): |
| 24 | """ |
| 25 | Compares plots generated by ``plot_solution``. |
| 26 | """ |
| 27 | data = read("data/RC208.vrp", round_func="trunc") |
| 28 | sol = read_solution("data/RC208.sol", data) |
| 29 | |
| 30 | plotting.plot_solution(sol, data) |
| 31 | plotting.plot_solution(sol, data, plot_clients=True) |
| 32 | |
| 33 | |
| 34 | @img_comp(["plot_solution_multiple_depots"], **IMG_KWARGS) |
nothing calls this directly
no test coverage detected