Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ public void phaseStarted(ConstructionHeuristicPhaseScope<Solution_> phaseScope)
terminationStatus = TerminationStatus.NOT_TERMINATED;
moveRepository.phaseStarted(phaseScope);
decider.phaseStarted(phaseScope);
logger.debug("Construction Heuristic phase ({}) started.", phaseIndex);
Comment thread
zepfred marked this conversation as resolved.
}

public void stepStarted(ConstructionHeuristicStepScope<Solution_> stepScope) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ public void solvingEnded(SolverScope<Solution_> solverScope) {
private void phaseStarted(ExhaustiveSearchPhaseScope<Solution_> phaseScope) {
super.phaseStarted(phaseScope);
decider.phaseStarted(phaseScope);
logger.debug("Exhaustive Search phase ({}) started.", phaseIndex);
Comment thread
zepfred marked this conversation as resolved.
}

private void phaseEnded(ExhaustiveSearchPhaseScope<Solution_> phaseScope) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ public void phaseStarted(LocalSearchPhaseScope<Solution_> phaseScope) {
super.phaseStarted(phaseScope);
decider.phaseStarted(phaseScope);
assertWorkingSolutionInitialized(phaseScope);
logger.debug("Local Search phase ({}) started.", phaseIndex);
Comment thread
zepfred marked this conversation as resolved.
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ public void solve(SolverScope<Solution_> solverScope) {
public void phaseStarted(AbstractPhaseScope<Solution_> phaseScope) {
super.phaseStarted(phaseScope);
terminationStatus = TerminationStatus.NOT_TERMINATED;
logger.debug("Custom phase ({}) started.", phaseIndex);
Comment thread
zepfred marked this conversation as resolved.
}

private void doStep(CustomStepScope<Solution_> stepScope, PhaseCommand<Solution_> customPhaseCommand) {
Expand Down
Loading