1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

moved tw-update from core.algorithm.state.StateManager to core.algorithm.io.VehicleRoutingAlgorithms

This commit is contained in:
oblonski 2014-07-23 23:08:14 +02:00
parent 6844a92e67
commit a1f448c113
3 changed files with 25 additions and 7 deletions

View file

@ -53,12 +53,13 @@ public class SolomonExample {
* A solomonReader reads solomon-instance files, and stores the required information in the builder.
*/
new SolomonReader(vrpBuilder).read("input/C101_solomon.txt");
/*
* Finally, the problem can be built. By default, transportCosts are crowFlyDistances (as usually used for vrp-instances).
*/
VehicleRoutingProblem vrp = vrpBuilder.build();
new Plotter(vrp).plot("output/solomon_C101.png", "C101");
/*