Class DefaultLocalSearchPhase<Solution_>
- java.lang.Object
 - 
- org.optaplanner.core.impl.phase.AbstractPhase<Solution_>
 - 
- org.optaplanner.core.impl.localsearch.DefaultLocalSearchPhase<Solution_>
 
 
 
- 
- Type Parameters:
 Solution_- the solution type, the class with thePlanningSolutionannotation
- All Implemented Interfaces:
 EventListener,LocalSearchPhaseLifecycleListener<Solution_>,LocalSearchPhase<Solution_>,PhaseLifecycleListener<Solution_>,Phase<Solution_>,SolverLifecycleListener<Solution_>
public class DefaultLocalSearchPhase<Solution_> extends AbstractPhase<Solution_> implements LocalSearchPhase<Solution_>, LocalSearchPhaseLifecycleListener<Solution_>
Default implementation ofLocalSearchPhase. 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDefaultLocalSearchPhase.Builder<Solution_> 
- 
Field Summary
Fields Modifier and Type Field Description protected AtomicLongacceptedMoveCountPerStepprotected Map<io.micrometer.core.instrument.Tags,List<AtomicReference<Number>>>constraintMatchTotalBestScoreMapprotected Map<io.micrometer.core.instrument.Tags,List<AtomicReference<Number>>>constraintMatchTotalStepScoreMapprotected Map<io.micrometer.core.instrument.Tags,AtomicLong>constraintMatchTotalTagsToBestCountprotected Map<io.micrometer.core.instrument.Tags,AtomicLong>constraintMatchTotalTagsToStepCountprotected LocalSearchDecider<Solution_>deciderprotected AtomicLongselectedMoveCountPerStep- 
Fields inherited from class org.optaplanner.core.impl.phase.AbstractPhase
assertExpectedStepScore, assertShadowVariablesAreNotStaleAfterStep, assertStepScoreFromScratch, logger, logIndentation, phaseIndex, phaseLifecycleSupport, phaseTermination, solver 
 - 
 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoStep(LocalSearchStepScope<Solution_> stepScope)StringgetPhaseTypeString()voidphaseEnded(LocalSearchPhaseScope<Solution_> phaseScope)voidphaseStarted(LocalSearchPhaseScope<Solution_> phaseScope)voidsolve(SolverScope<Solution_> solverScope)voidsolvingEnded(SolverScope<Solution_> solverScope)voidsolvingStarted(SolverScope<Solution_> solverScope)voidstepEnded(LocalSearchStepScope<Solution_> stepScope)voidstepStarted(LocalSearchStepScope<Solution_> stepScope)- 
Methods inherited from class org.optaplanner.core.impl.phase.AbstractPhase
addPhaseLifecycleListener, assertWorkingSolutionInitialized, calculateWorkingStepScore, getPhaseIndex, getPhaseTermination, getSolver, isAssertExpectedStepScore, isAssertShadowVariablesAreNotStaleAfterStep, isAssertStepScoreFromScratch, phaseEnded, phaseStarted, predictWorkingStepScore, removePhaseLifecycleListener, setSolver, stepEnded, stepStarted 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.optaplanner.core.impl.phase.Phase
addPhaseLifecycleListener, removePhaseLifecycleListener 
- 
Methods inherited from interface org.optaplanner.core.impl.phase.event.PhaseLifecycleListener
phaseEnded, phaseStarted, stepEnded, stepStarted 
 - 
 
 - 
 
- 
- 
Field Detail
- 
decider
protected final LocalSearchDecider<Solution_> decider
 
- 
acceptedMoveCountPerStep
protected final AtomicLong acceptedMoveCountPerStep
 
- 
selectedMoveCountPerStep
protected final AtomicLong selectedMoveCountPerStep
 
- 
constraintMatchTotalTagsToStepCount
protected final Map<io.micrometer.core.instrument.Tags,AtomicLong> constraintMatchTotalTagsToStepCount
 
- 
constraintMatchTotalTagsToBestCount
protected final Map<io.micrometer.core.instrument.Tags,AtomicLong> constraintMatchTotalTagsToBestCount
 
- 
constraintMatchTotalStepScoreMap
protected final Map<io.micrometer.core.instrument.Tags,List<AtomicReference<Number>>> constraintMatchTotalStepScoreMap
 
- 
constraintMatchTotalBestScoreMap
protected final Map<io.micrometer.core.instrument.Tags,List<AtomicReference<Number>>> constraintMatchTotalBestScoreMap
 
 - 
 
- 
Method Detail
- 
getPhaseTypeString
public String getPhaseTypeString()
- Specified by:
 getPhaseTypeStringin classAbstractPhase<Solution_>
 
- 
solve
public void solve(SolverScope<Solution_> solverScope)
 
- 
doStep
protected void doStep(LocalSearchStepScope<Solution_> stepScope)
 
- 
solvingStarted
public void solvingStarted(SolverScope<Solution_> solverScope)
- Specified by:
 solvingStartedin interfaceSolverLifecycleListener<Solution_>- Overrides:
 solvingStartedin classAbstractPhase<Solution_>
 
- 
phaseStarted
public void phaseStarted(LocalSearchPhaseScope<Solution_> phaseScope)
- Specified by:
 phaseStartedin interfaceLocalSearchPhaseLifecycleListener<Solution_>
 
- 
stepStarted
public void stepStarted(LocalSearchStepScope<Solution_> stepScope)
- Specified by:
 stepStartedin interfaceLocalSearchPhaseLifecycleListener<Solution_>
 
- 
stepEnded
public void stepEnded(LocalSearchStepScope<Solution_> stepScope)
- Specified by:
 stepEndedin interfaceLocalSearchPhaseLifecycleListener<Solution_>
 
- 
phaseEnded
public void phaseEnded(LocalSearchPhaseScope<Solution_> phaseScope)
- Specified by:
 phaseEndedin interfaceLocalSearchPhaseLifecycleListener<Solution_>
 
- 
solvingEnded
public void solvingEnded(SolverScope<Solution_> solverScope)
- Specified by:
 solvingEndedin interfaceSolverLifecycleListener<Solution_>- Overrides:
 solvingEndedin classAbstractPhase<Solution_>
 
 - 
 
 -