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

improve visualization

This commit is contained in:
oblonski 2013-12-11 08:58:11 +01:00
parent 0717f5dd66
commit f0c6d15852
9 changed files with 294 additions and 210 deletions

View file

@ -20,6 +20,7 @@ import java.io.File;
import java.util.Arrays;
import java.util.Collection;
import jsprit.analysis.toolbox.GraphStreamViewer;
import jsprit.analysis.toolbox.Plotter;
import jsprit.analysis.toolbox.SolutionPrinter;
import jsprit.analysis.toolbox.SolutionPrinter.Print;
@ -128,6 +129,7 @@ public class SimpleEnRoutePickupAndDeliveryOpenRoutesExample {
solutionPlotter.plotShipments(true);
solutionPlotter.plot("output/simpleEnRoutePickupAndDeliveryExample_solution.png", "en-route pickup and delivery");
GraphStreamViewer.display(problem, bestSolution, 100);
}
}