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

remove deprecated code

This commit is contained in:
oblonski 2016-02-09 10:25:02 +01:00
parent f052da1009
commit 1f4974c210
4 changed files with 4 additions and 4 deletions

View file

@ -101,7 +101,7 @@ public class SolomonExampleWithSpecifiedVehicleEndLocations {
solPlotter.plot("output/solomon_C101_specifiedVehicleEndLocations_solution.png", "C101");
new GraphStreamViewer(vrp, solution).setRenderDelay(50).labelWith(Label.ID).setEnableAutoLayout(true).display();
new GraphStreamViewer(vrp, solution).setRenderDelay(50).labelWith(Label.ID).display();
}

View file

@ -101,7 +101,7 @@ public class SolomonExampleWithSpecifiedVehicleEndLocationsWithoutTWs {
solPlotter.plot("output/solomon_C101_specifiedVehicleEndLocations_withoutTWs_solution.png", "C101");
new GraphStreamViewer(vrp, solution).setRenderDelay(50).labelWith(Label.ID).setEnableAutoLayout(true).display();
new GraphStreamViewer(vrp, solution).setRenderDelay(50).labelWith(Label.ID).display();
}

View file

@ -91,7 +91,7 @@ public class SolomonOpenExample {
// SolutionPlotter.plotSolutionAsPNG(vrp, solution, "output/solomon_C101_open_solution.png","C101");
new GraphStreamViewer(vrp, solution).setRenderDelay(150).labelWith(Label.ID).setEnableAutoLayout(true).display();
new GraphStreamViewer(vrp, solution).setRenderDelay(150).labelWith(Label.ID).display();
}

View file

@ -101,7 +101,7 @@ public class VRPWithBackhaulsExample {
// plotter.setShowFirstActivity(true);
// plotter.plot("output/vrpwbh_solomon_r101_solution.png","vrpwbh_r101");
new GraphStreamViewer(vrp, solution).setRenderDelay(100).setEnableAutoLayout(false).display();
new GraphStreamViewer(vrp, solution).setRenderDelay(100).display();
}