-
Bug
-
Resolution: Done
-
Minor
-
None
-
2023 Week 09-11 (from Feb 27)
-
NEW
-
NEW
For example if it did nothing during a warm start.
in DefaultConstructionHeuristicPhase.java
before
if (skipBestSolutionCloningInSteps) {
bestSolutionRecaller.updateBestSolution(phaseScope.getSolverScope());
}
after
if (skipBestSolutionCloningInSteps && phaseScope.getNextStepIndex() == 0) {
bestSolutionRecaller.updateBestSolution(phaseScope.getSolverScope());
}