Class UnionMoveSelectorConfig
- java.lang.Object
-
- org.optaplanner.core.config.AbstractConfig<C>
-
- org.optaplanner.core.config.heuristic.selector.SelectorConfig<C>
-
- org.optaplanner.core.config.heuristic.selector.move.MoveSelectorConfig<UnionMoveSelectorConfig>
-
- org.optaplanner.core.config.heuristic.selector.move.composite.UnionMoveSelectorConfig
-
public class UnionMoveSelectorConfig extends MoveSelectorConfig<UnionMoveSelectorConfig>
-
-
Field Summary
-
Fields inherited from class org.optaplanner.core.config.heuristic.selector.move.MoveSelectorConfig
cacheType, filterClassList, probabilityWeightFactoryClass, selectedCountLimit, selectionOrder, sorterClass, sorterComparatorClass, sorterOrder, sorterWeightFactoryClass
-
-
Constructor Summary
Constructors Constructor Description UnionMoveSelectorConfig()UnionMoveSelectorConfig(List<MoveSelectorConfig> moveSelectorConfigList)
-
Method Summary
-
Methods inherited from class org.optaplanner.core.config.heuristic.selector.move.MoveSelectorConfig
buildMoveSelector, buildUnfoldedMoveSelectorConfig, determineBaseRandomSelection, getCacheType, getFilterClassList, getFixedProbabilityWeight, getProbabilityWeightFactoryClass, getSelectedCountLimit, getSelectionOrder, getSorterClass, getSorterComparatorClass, getSorterOrder, getSorterWeightFactoryClass, inheritFolded, isBaseInherentlyCached, setCacheType, setFilterClassList, setFixedProbabilityWeight, setProbabilityWeightFactoryClass, setSelectedCountLimit, setSelectionOrder, setSorterClass, setSorterComparatorClass, setSorterOrder, setSorterWeightFactoryClass, withCacheType, withFilterClassList, withFixedProbabilityWeight, withProbabilityWeightFactoryClass, withSelectedCountLimit, withSelectionOrder, withSorterClass, withSorterComparatorClass, withSorterOrder, withSorterWeightFactoryClass
-
Methods inherited from class org.optaplanner.core.config.heuristic.selector.SelectorConfig
validateCacheTypeVersusSelectionOrder
-
Methods inherited from class org.optaplanner.core.config.AbstractConfig
deduceEntityDescriptor, deduceVariableDescriptor, deduceVariableDescriptorList
-
-
-
-
Constructor Detail
-
UnionMoveSelectorConfig
public UnionMoveSelectorConfig()
-
UnionMoveSelectorConfig
public UnionMoveSelectorConfig(List<MoveSelectorConfig> moveSelectorConfigList)
-
-
Method Detail
-
getMoveSelectorConfigList
public List<MoveSelectorConfig> getMoveSelectorConfigList()
-
setMoveSelectorConfigList
public void setMoveSelectorConfigList(List<MoveSelectorConfig> moveSelectorConfigList)
-
getSelectorProbabilityWeightFactoryClass
public Class<? extends SelectionProbabilityWeightFactory> getSelectorProbabilityWeightFactoryClass()
-
setSelectorProbabilityWeightFactoryClass
public void setSelectorProbabilityWeightFactoryClass(Class<? extends SelectionProbabilityWeightFactory> selectorProbabilityWeightFactoryClass)
-
buildBaseMoveSelector
public MoveSelector buildBaseMoveSelector(HeuristicConfigPolicy configPolicy, SelectionCacheType minimumCacheType, boolean randomSelection)
- Specified by:
buildBaseMoveSelectorin classMoveSelectorConfig<UnionMoveSelectorConfig>- 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
-
extractLeafMoveSelectorConfigsIntoList
public void extractLeafMoveSelectorConfigsIntoList(List<MoveSelectorConfig> leafMoveSelectorConfigList)
Description copied from class:MoveSelectorConfigGather a list of all descendantMoveSelectorConfigs except forUnionMoveSelectorConfigandCartesianProductMoveSelectorConfig.- Overrides:
extractLeafMoveSelectorConfigsIntoListin classMoveSelectorConfig<UnionMoveSelectorConfig>- Parameters:
leafMoveSelectorConfigList- not null
-
inherit
public UnionMoveSelectorConfig inherit(UnionMoveSelectorConfig inheritedConfig)
Description copied from class:AbstractConfigInherits each property of theinheritedConfigunless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).After the inheritance, if a property on this
AbstractConfigcomposition is replaced, it should not affect the inherited composition instance.- Overrides:
inheritin classMoveSelectorConfig<UnionMoveSelectorConfig>- Parameters:
inheritedConfig- never null- Returns:
- this
-
copyConfig
public UnionMoveSelectorConfig copyConfig()
Description copied from class:AbstractConfigTypically implemented by constructing a new instance and callingAbstractConfig.inherit(AbstractConfig)on it- Specified by:
copyConfigin classAbstractConfig<UnionMoveSelectorConfig>- Returns:
- new instance
-
toString
public String toString()
- Overrides:
toStringin classAbstractConfig<UnionMoveSelectorConfig>
-
-