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

replace .setNuOfIterations with .setMaxIterations

This commit is contained in:
oblonski 2015-01-06 18:48:48 +01:00
parent 527ca56d04
commit 8d20fe12aa
19 changed files with 320 additions and 77 deletions

View file

@ -158,7 +158,7 @@ public class AdditionalDistanceConstraintExample {
vraBuilder.setStateAndConstraintManager(stateManager,constraintManager);
VehicleRoutingAlgorithm vra = vraBuilder.build();
// vra.setNuOfIterations(250); //v1.3.1
// vra.setMaxIterations(250); //v1.3.1
vra.setMaxIterations(250); //head of development - upcoming release (v1.4)
Collection<VehicleRoutingProblemSolution> solutions = vra.searchSolutions();