Skip to content

Commit

Permalink
more info about initial solution
Browse files Browse the repository at this point in the history
  • Loading branch information
oblonski committed Nov 22, 2024
1 parent 25507f8 commit 37cfd3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public InsertionInitialSolutionFactory(InsertionStrategy insertionStrategy, Solu

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

0 comments on commit 37cfd3c

Please sign in to comment.