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

internale experiments with insertionCalc

This commit is contained in:
Stefan Schroeder 2013-08-22 17:34:19 +02:00
parent 922f360fe4
commit f7ff7aeeca
16 changed files with 1541 additions and 6 deletions

View file

@ -0,0 +1,16 @@
package examples;
import readers.ChristofidesReader;
import basics.VehicleRoutingProblem;
import basics.io.VrpXMLWriter;
public class CVRPExample {
public static void main(String[] args) {
VehicleRoutingProblem.Builder builder = VehicleRoutingProblem.Builder.newInstance();
new ChristofidesReader(builder).read("input/vrpnc1.txt");
VehicleRoutingProblem vrp = builder.build();
new VrpXMLWriter(vrp).write("input/vrpnc1-jsprit.xml");
}
}