Skip to content

Commit 37cfd3c

Browse files
committed
more info about initial solution
1 parent 25507f8 commit 37cfd3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/InsertionInitialSolutionFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public InsertionInitialSolutionFactory(InsertionStrategy insertionStrategy, Solu
5050

5151
@Override
5252
public VehicleRoutingProblemSolution createSolution(final VehicleRoutingProblem vrp) {
53-
logger.info("create initial solution");
53+
logger.info("create initial solution with " + insertion);
5454
List<VehicleRoute> vehicleRoutes = new ArrayList<>(vrp.getInitialVehicleRoutes());
5555
Collection<Job> badJobs = insertion.insertJobs(vehicleRoutes, getUnassignedJobs(vrp));
5656
VehicleRoutingProblemSolution solution = new VehicleRoutingProblemSolution(vehicleRoutes, badJobs, Double.MAX_VALUE);

0 commit comments

Comments
 (0)