Fixture that returns the RC208 VRPTW instance when called, with 100 clients.
()
| 24 | |
| 25 | @pytest.fixture(scope="session") |
| 26 | def rc208(): |
| 27 | """ |
| 28 | Fixture that returns the RC208 VRPTW instance when called, with 100 |
| 29 | clients. |
| 30 | """ |
| 31 | return read("data/RC208.vrp", round_func="dimacs") |
| 32 | |
| 33 | |
| 34 | @pytest.fixture(scope="session") |