Class SubChainChangeMoveSelectorFactory<Solution_>
java.lang.Object
org.optaplanner.core.impl.AbstractFromConfigFactory<Solution_,SelectorConfig_>
org.optaplanner.core.impl.heuristic.selector.AbstractSelectorFactory<Solution_,MoveSelectorConfig_>
org.optaplanner.core.impl.heuristic.selector.move.AbstractMoveSelectorFactory<Solution_,SubChainChangeMoveSelectorConfig>
org.optaplanner.core.impl.heuristic.selector.move.generic.chained.SubChainChangeMoveSelectorFactory<Solution_>
- All Implemented Interfaces:
MoveSelectorFactory<Solution_>
public class SubChainChangeMoveSelectorFactory<Solution_>
extends AbstractMoveSelectorFactory<Solution_,SubChainChangeMoveSelectorConfig>
-
Field Summary
Fields inherited from class org.optaplanner.core.impl.AbstractFromConfigFactory
config -
Constructor Summary
ConstructorsConstructorDescriptionSubChainChangeMoveSelectorFactory(SubChainChangeMoveSelectorConfig moveSelectorConfig) -
Method Summary
Modifier and TypeMethodDescriptionprotected MoveSelector<Solution_>buildBaseMoveSelector(HeuristicConfigPolicy<Solution_> configPolicy, SelectionCacheType minimumCacheType, boolean randomSelection) Builds a baseMoveSelectorwithout any advanced capabilities (filtering, sorting, ...).Methods inherited from class org.optaplanner.core.impl.heuristic.selector.move.AbstractMoveSelectorFactory
applySorting, buildMoveSelector, buildUnfoldedMoveSelectorConfig, checkUnfolded, determineBaseRandomSelection, isBaseInherentlyCached, validateSortingMethods inherited from class org.optaplanner.core.impl.heuristic.selector.AbstractSelectorFactory
validateCacheTypeVersusSelectionOrderMethods inherited from class org.optaplanner.core.impl.AbstractFromConfigFactory
deduceEntityDescriptor, deduceGenuineVariableDescriptor, deduceVariableDescriptorList, getDefaultEntitySelectorConfigForEntity, getTheOnlyEntityDescriptor, getTheOnlyVariableDescriptor, getVariableDescriptorForName
-
Constructor Details
-
SubChainChangeMoveSelectorFactory
-
-
Method Details
-
buildBaseMoveSelector
protected MoveSelector<Solution_> buildBaseMoveSelector(HeuristicConfigPolicy<Solution_> configPolicy, SelectionCacheType minimumCacheType, boolean randomSelection) Description copied from class:AbstractMoveSelectorFactoryBuilds a baseMoveSelectorwithout any advanced capabilities (filtering, sorting, ...).- Specified by:
buildBaseMoveSelectorin classAbstractMoveSelectorFactory<Solution_,SubChainChangeMoveSelectorConfig> - Parameters:
configPolicy- never nullminimumCacheType- never null, If caching is used (different fromSelectionCacheType.JUST_IN_TIME), then it should be at least thisSelectionCacheTypebecause an ancestor already uses such caching and less would be pointless.randomSelection- true is equivalent toSelectionOrder.RANDOM, false is equivalent toSelectionOrder.ORIGINAL- Returns:
- never null
-