-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't proliferate the metric switching
- Loading branch information
Showing
10 changed files
with
91 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
...ore/impl/heuristic/selector/move/generic/RuinRecreateConstructionHeuristicPhaseScope.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package ai.timefold.solver.core.impl.heuristic.selector.move.generic; | ||
|
||
import ai.timefold.solver.core.impl.constructionheuristic.scope.ConstructionHeuristicPhaseScope; | ||
import ai.timefold.solver.core.impl.constructionheuristic.scope.ConstructionHeuristicStepScope; | ||
import ai.timefold.solver.core.impl.solver.scope.SolverScope; | ||
|
||
final class RuinRecreateConstructionHeuristicPhaseScope<Solution_> extends ConstructionHeuristicPhaseScope<Solution_> { | ||
|
||
public RuinRecreateConstructionHeuristicPhaseScope(SolverScope<Solution_> solverScope, int phaseIndex) { | ||
super(solverScope, phaseIndex); | ||
} | ||
|
||
@Override | ||
public ConstructionHeuristicStepScope<Solution_> buildStepScope() { | ||
return buildStepScope(getNextStepIndex()); | ||
} | ||
|
||
@Override | ||
protected ConstructionHeuristicStepScope<Solution_> buildStepScope(int stepIndex) { | ||
return new RuinRecreateConstructionHeuristicStepScope<>(this, stepIndex); | ||
} | ||
|
||
@Override | ||
public void addChildThreadsMoveEvaluationCount(long addition) { | ||
// Nested phase does not count moves. | ||
} | ||
|
||
@Override | ||
public void addMoveEvaluationCountPerType(String moveType, long count) { | ||
// Nested phase does not count moves. | ||
} | ||
|
||
} |
18 changes: 18 additions & 0 deletions
18
...core/impl/heuristic/selector/move/generic/RuinRecreateConstructionHeuristicStepScope.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package ai.timefold.solver.core.impl.heuristic.selector.move.generic; | ||
|
||
import ai.timefold.solver.core.impl.constructionheuristic.scope.ConstructionHeuristicPhaseScope; | ||
import ai.timefold.solver.core.impl.constructionheuristic.scope.ConstructionHeuristicStepScope; | ||
import ai.timefold.solver.core.impl.heuristic.move.Move; | ||
|
||
final class RuinRecreateConstructionHeuristicStepScope<Solution_> extends ConstructionHeuristicStepScope<Solution_> { | ||
|
||
public RuinRecreateConstructionHeuristicStepScope(ConstructionHeuristicPhaseScope<Solution_> phaseScope, int stepIndex) { | ||
super(phaseScope, stepIndex); | ||
} | ||
|
||
@Override | ||
public void incrementMoveEvaluationCount(Move<?> move) { | ||
// Nested phase does not count moves. | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters