We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f80f66 commit d2576beCopy full SHA for d2576be
jsprit-core/src/main/java/com/graphhopper/jsprit/core/problem/VehicleRoutingProblem.java
@@ -578,7 +578,7 @@ private VehicleRoutingProblem(Builder builder) {
578
this.activityMap = builder.activityMap;
579
this.nuActivities = builder.activityIndexCounter;
580
this.allLocations = builder.allLocations;
581
- this.allJobs = new HashMap<>(jobs);
+ this.allJobs = new LinkedHashMap<>(jobs);
582
this.allJobs.putAll(builder.jobsInInitialRoutes);
583
logger.info("setup problem: {}", this);
584
}
0 commit comments