Class AbstractCachingValueSelector<Solution_>
java.lang.Object
ai.timefold.solver.core.impl.heuristic.selector.AbstractSelector<Solution_>
ai.timefold.solver.core.impl.heuristic.selector.AbstractDemandEnabledSelector<Solution_>
ai.timefold.solver.core.impl.heuristic.selector.value.decorator.AbstractCachingValueSelector<Solution_>
- All Implemented Interfaces:
SelectionCacheLifecycleListener<Solution_>,Selector<Solution_>,ValueSelector<Solution_>,PhaseLifecycleListener<Solution_>,SolverLifecycleListener<Solution_>,EventListener
- Direct Known Subclasses:
CachingValueSelector,ShufflingValueSelector,SortingValueSelector
public abstract class AbstractCachingValueSelector<Solution_>
extends AbstractDemandEnabledSelector<Solution_>
implements SelectionCacheLifecycleListener<Solution_>, ValueSelector<Solution_>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final SelectionCacheTypeprotected final EntityIndependentValueSelector<Solution_>Fields inherited from class ai.timefold.solver.core.impl.heuristic.selector.AbstractSelector
logger, phaseLifecycleSupport, workingRandom -
Constructor Summary
ConstructorsConstructorDescriptionAbstractCachingValueSelector(EntityIndependentValueSelector<Solution_> childValueSelector, SelectionCacheType cacheType) -
Method Summary
Modifier and TypeMethodDescriptionvoidconstructCache(SolverScope<Solution_> solverScope) voiddisposeCache(SolverScope<Solution_> solverScope) endingIterator(Object entity) IfSelector.isNeverEnding()is true, thenValueSelector.iterator(Object)will never end.booleanUnless this selector itself caches, this returnsSelectionCacheType.JUST_IN_TIME, even if a selector child caches.longgetSize()longSimilar toIterableSelector.getSize(), but requires an entity.inthashCode()booleanIf false, thenSelector.isNeverEnding()is true.Methods inherited from class ai.timefold.solver.core.impl.heuristic.selector.AbstractSelector
phaseEnded, phaseStarted, solvingEnded, solvingStarted, stepEnded, stepStartedMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ai.timefold.solver.core.impl.phase.event.PhaseLifecycleListener
phaseEnded, phaseStarted, stepEnded, stepStartedMethods inherited from interface ai.timefold.solver.core.impl.heuristic.selector.Selector
isNeverEndingMethods inherited from interface ai.timefold.solver.core.impl.solver.event.SolverLifecycleListener
solvingEnded, solvingError, solvingStartedMethods inherited from interface ai.timefold.solver.core.impl.heuristic.selector.value.ValueSelector
iterator
-
Field Details
-
childValueSelector
-
cacheType
-
cachedValueList
-
-
Constructor Details
-
AbstractCachingValueSelector
public AbstractCachingValueSelector(EntityIndependentValueSelector<Solution_> childValueSelector, SelectionCacheType cacheType)
-
-
Method Details
-
getChildValueSelector
-
getCacheType
Description copied from interface:SelectorUnless this selector itself caches, this returnsSelectionCacheType.JUST_IN_TIME, even if a selector child caches.- Specified by:
getCacheTypein interfaceSelector<Solution_>- Overrides:
getCacheTypein classAbstractSelector<Solution_>- Returns:
- never null
-
constructCache
- Specified by:
constructCachein interfaceSelectionCacheLifecycleListener<Solution_>
-
disposeCache
- Specified by:
disposeCachein interfaceSelectionCacheLifecycleListener<Solution_>
-
getVariableDescriptor
- Specified by:
getVariableDescriptorin interfaceValueSelector<Solution_>- Returns:
- never null
-
isCountable
public boolean isCountable()Description copied from interface:SelectorIf false, thenSelector.isNeverEnding()is true.- Specified by:
isCountablein interfaceSelector<Solution_>- Returns:
- true if all the
ValueRanges are countable (for example a double value range between 1.2 and 1.4 is not countable)
-
getSize
Description copied from interface:ValueSelectorSimilar toIterableSelector.getSize(), but requires an entity.- Specified by:
getSizein interfaceValueSelector<Solution_>- Parameters:
entity- never null- Returns:
- the approximate number of elements generated by this
Selector, always>= 0
-
getSize
public long getSize() -
endingIterator
Description copied from interface:ValueSelectorIfSelector.isNeverEnding()is true, thenValueSelector.iterator(Object)will never end. This returns an endingIterator, that tries to matchValueSelector.iterator(Object)as much as possible, but return each distinct element only once and therefore it might not respect the configuration of thisValueSelectorentirely.- Specified by:
endingIteratorin interfaceValueSelector<Solution_>- Parameters:
entity- never null- Returns:
- never null
- See Also:
-
endingIterator
-
equals
- Specified by:
equalsin classAbstractDemandEnabledSelector<Solution_>
-
hashCode
public int hashCode()- Specified by:
hashCodein classAbstractDemandEnabledSelector<Solution_>
-