Uses of Interface
org.optaplanner.core.impl.heuristic.move.Move
-
-
Uses of Move in org.optaplanner.core.impl.constructionheuristic.placer
Methods in org.optaplanner.core.impl.constructionheuristic.placer that return types with arguments of type Move Modifier and Type Method Description Iterator<Move<Solution_>>
Placement. iterator()
Constructor parameters in org.optaplanner.core.impl.constructionheuristic.placer with type arguments of type Move Constructor Description Placement(Iterator<Move<Solution_>> moveIterator)
-
Uses of Move in org.optaplanner.core.impl.constructionheuristic.scope
Methods in org.optaplanner.core.impl.constructionheuristic.scope that return Move Modifier and Type Method Description Move<Solution_>
ConstructionHeuristicStepScope. getStep()
Methods in org.optaplanner.core.impl.constructionheuristic.scope with parameters of type Move Modifier and Type Method Description void
ConstructionHeuristicStepScope. setStep(Move<Solution_> step)
Constructors in org.optaplanner.core.impl.constructionheuristic.scope with parameters of type Move Constructor Description ConstructionHeuristicMoveScope(ConstructionHeuristicStepScope<Solution_> stepScope, int moveIndex, Move<Solution_> move)
-
Uses of Move in org.optaplanner.core.impl.exhaustivesearch.node
Methods in org.optaplanner.core.impl.exhaustivesearch.node that return Move Modifier and Type Method Description Move
ExhaustiveSearchNode. getMove()
Move
ExhaustiveSearchNode. getUndoMove()
Methods in org.optaplanner.core.impl.exhaustivesearch.node with parameters of type Move Modifier and Type Method Description void
ExhaustiveSearchNode. setMove(Move move)
void
ExhaustiveSearchNode. setUndoMove(Move undoMove)
-
Uses of Move in org.optaplanner.core.impl.heuristic.move
Classes in org.optaplanner.core.impl.heuristic.move that implement Move Modifier and Type Class Description class
AbstractMove<Solution_>
Abstract superclass forMove
.class
CompositeMove<Solution_>
A CompositeMove is composed out of multiple other moves.class
NoChangeMove<Solution_>
Makes no changes.Fields in org.optaplanner.core.impl.heuristic.move declared as Move Modifier and Type Field Description protected Move<Solution_>[]
CompositeMove. moves
Methods in org.optaplanner.core.impl.heuristic.move with type parameters of type Move Modifier and Type Method Description static <Solution_,Move_ extends Move<Solution_>>
Move<Solution_>CompositeMove. buildMove(List<Move_> moveList)
static <Solution_,Move_ extends Move<Solution_>>
Move<Solution_>CompositeMove. buildMove(Move_... moves)
Methods in org.optaplanner.core.impl.heuristic.move that return Move Modifier and Type Method Description static <Solution_,Move_ extends Move<Solution_>>
Move<Solution_>CompositeMove. buildMove(List<Move_> moveList)
static <Solution_,Move_ extends Move<Solution_>>
Move<Solution_>CompositeMove. buildMove(Move_... moves)
Move<Solution_>
Move. doMove(ScoreDirector<Solution_> scoreDirector)
Does the move (which indirectly affects theScoreDirector.getWorkingSolution()
).Move<Solution_>[]
CompositeMove. getMoves()
default Move<Solution_>
Move. rebase(ScoreDirector<Solution_> destinationScoreDirector)
Rebases a move from an originScoreDirector
to another destinationScoreDirector
which is usually on anotherThread
or JVM.Methods in org.optaplanner.core.impl.heuristic.move with parameters of type Move Modifier and Type Method Description static <Solution_,Move_ extends Move<Solution_>>
Move<Solution_>CompositeMove. buildMove(Move_... moves)
Constructors in org.optaplanner.core.impl.heuristic.move with parameters of type Move Constructor Description CompositeMove(Move<Solution_>... moves)
-
Uses of Move in org.optaplanner.core.impl.heuristic.selector.common.iterator
Classes in org.optaplanner.core.impl.heuristic.selector.common.iterator with type parameters of type Move Modifier and Type Class Description class
AbstractOriginalChangeIterator<Solution_,Move_ extends Move<Solution_>>
class
AbstractOriginalSwapIterator<Solution_,Move_ extends Move<Solution_>,SubSelection_>
class
AbstractRandomChangeIterator<Solution_,Move_ extends Move<Solution_>>
class
AbstractRandomSwapIterator<Solution_,Move_ extends Move<Solution_>,SubSelection_>
-
Uses of Move in org.optaplanner.core.impl.heuristic.selector.move.composite
Fields in org.optaplanner.core.impl.heuristic.selector.move.composite with type parameters of type Move Modifier and Type Field Description protected NavigableMap<Double,Iterator<Move<Solution_>>>
UnionMoveSelector.RandomUnionMoveIterator. moveIteratorMap
protected Map<Iterator<Move<Solution_>>,org.optaplanner.core.impl.heuristic.selector.move.composite.UnionMoveSelector.ProbabilityItem<Solution_>>
UnionMoveSelector.RandomUnionMoveIterator. probabilityItemMap
Methods in org.optaplanner.core.impl.heuristic.selector.move.composite that return Move Modifier and Type Method Description protected Move<Solution_>
CartesianProductMoveSelector.OriginalCartesianProductMoveIterator. createUpcomingSelection()
Move<Solution_>
CartesianProductMoveSelector.RandomCartesianProductMoveIterator. next()
Move<Solution_>
UnionMoveSelector.RandomUnionMoveIterator. next()
Methods in org.optaplanner.core.impl.heuristic.selector.move.composite that return types with arguments of type Move Modifier and Type Method Description Iterator<Move<Solution_>>
CartesianProductMoveSelector. iterator()
Iterator<Move<Solution_>>
UnionMoveSelector. iterator()
-
Uses of Move in org.optaplanner.core.impl.heuristic.selector.move.decorator
Fields in org.optaplanner.core.impl.heuristic.selector.move.decorator with type parameters of type Move Modifier and Type Field Description protected List<Move<Solution_>>
AbstractCachingMoveSelector. cachedMoveList
protected NavigableMap<Double,Move<Solution_>>
ProbabilityMoveSelector. cachedMoveMap
protected SelectionFilter<Solution_,Move<Solution_>>
FilteringMoveSelector. filter
protected SelectionProbabilityWeightFactory<Solution_,Move<Solution_>>
ProbabilityMoveSelector. probabilityWeightFactory
protected SelectionSorter<Solution_,Move<Solution_>>
SortingMoveSelector. sorter
Methods in org.optaplanner.core.impl.heuristic.selector.move.decorator that return types with arguments of type Move Modifier and Type Method Description Iterator<Move<Solution_>>
CachingMoveSelector. iterator()
Iterator<Move<Solution_>>
FilteringMoveSelector. iterator()
Iterator<Move<Solution_>>
ProbabilityMoveSelector. iterator()
Iterator<Move<Solution_>>
SelectedCountLimitMoveSelector. iterator()
Iterator<Move<Solution_>>
ShufflingMoveSelector. iterator()
Iterator<Move<Solution_>>
SortingMoveSelector. iterator()
Methods in org.optaplanner.core.impl.heuristic.selector.move.decorator with parameters of type Move Modifier and Type Method Description protected boolean
FilteringMoveSelector. accept(ScoreDirector<Solution_> scoreDirector, Move<Solution_> move)
Constructor parameters in org.optaplanner.core.impl.heuristic.selector.move.decorator with type arguments of type Move Constructor Description FilteringMoveSelector(MoveSelector<Solution_> childMoveSelector, SelectionFilter<Solution_,Move<Solution_>> filter)
ProbabilityMoveSelector(MoveSelector<Solution_> childMoveSelector, SelectionCacheType cacheType, SelectionProbabilityWeightFactory<Solution_,? extends Move<Solution_>> probabilityWeightFactory)
SortingMoveSelector(MoveSelector<Solution_> childMoveSelector, SelectionCacheType cacheType, SelectionSorter<Solution_,Move<Solution_>> sorter)
-
Uses of Move in org.optaplanner.core.impl.heuristic.selector.move.factory
Classes in org.optaplanner.core.impl.heuristic.selector.move.factory with type parameters of type Move Modifier and Type Interface Description interface
MoveIteratorFactory<Solution_,Move_ extends Move<Solution_>>
Fields in org.optaplanner.core.impl.heuristic.selector.move.factory with type parameters of type Move Modifier and Type Field Description protected List<Move<Solution_>>
MoveListFactoryToMoveSelectorBridge. cachedMoveList
Methods in org.optaplanner.core.impl.heuristic.selector.move.factory that return types with arguments of type Move Modifier and Type Method Description List<? extends Move<Solution_>>
MoveListFactory. createMoveList(Solution_ solution)
When it is called depends on the configuredSelectionCacheType
.Iterator<Move<Solution_>>
MoveIteratorFactoryToMoveSelectorBridge. iterator()
Iterator<Move<Solution_>>
MoveListFactoryToMoveSelectorBridge. iterator()
-
Uses of Move in org.optaplanner.core.impl.heuristic.selector.move.generic
Classes in org.optaplanner.core.impl.heuristic.selector.move.generic that implement Move Modifier and Type Class Description class
ChangeMove<Solution_>
class
PillarChangeMove<Solution_>
ThisMove
is not cacheable.class
PillarSwapMove<Solution_>
ThisMove
is not cacheable.class
SwapMove<Solution_>
Methods in org.optaplanner.core.impl.heuristic.selector.move.generic that return types with arguments of type Move Modifier and Type Method Description Iterator<Move<Solution_>>
ChangeMoveSelector. iterator()
Iterator<Move<Solution_>>
PillarChangeMoveSelector. iterator()
Iterator<Move<Solution_>>
PillarSwapMoveSelector. iterator()
Iterator<Move<Solution_>>
SwapMoveSelector. iterator()
-
Uses of Move in org.optaplanner.core.impl.heuristic.selector.move.generic.chained
Classes in org.optaplanner.core.impl.heuristic.selector.move.generic.chained that implement Move Modifier and Type Class Description class
ChainedChangeMove<Solution_>
class
ChainedSwapMove<Solution_>
class
KOptMove<Solution_>
class
SubChainChangeMove<Solution_>
class
SubChainReversingChangeMove<Solution_>
class
SubChainReversingSwapMove<Solution_>
ThisMove
is not cacheable.class
SubChainSwapMove<Solution_>
ThisMove
is not cacheable.class
TailChainSwapMove<Solution_>
Also known as a 2-opt move.Methods in org.optaplanner.core.impl.heuristic.selector.move.generic.chained that return types with arguments of type Move Modifier and Type Method Description Iterator<Move<Solution_>>
KOptMoveSelector. iterator()
Iterator<Move<Solution_>>
SubChainChangeMoveSelector. iterator()
Iterator<Move<Solution_>>
SubChainSwapMoveSelector. iterator()
Iterator<Move<Solution_>>
TailChainSwapMoveSelector. iterator()
-
Uses of Move in org.optaplanner.core.impl.heuristic.selector.move.generic.list
Classes in org.optaplanner.core.impl.heuristic.selector.move.generic.list that implement Move Modifier and Type Class Description class
ListAssignMove<Solution_>
class
ListChangeMove<Solution_>
Moves an element of alist variable
.class
ListSwapMove<Solution_>
Swaps two elements of alist variable
.class
ListUnassignMove<Solution_>
Methods in org.optaplanner.core.impl.heuristic.selector.move.generic.list that return Move Modifier and Type Method Description protected Move<Solution_>
OriginalListChangeIterator. createUpcomingSelection()
protected Move<Solution_>
OriginalListSwapIterator. createUpcomingSelection()
protected Move<Solution_>
RandomListChangeIterator. createUpcomingSelection()
protected Move<Solution_>
RandomListSwapIterator. createUpcomingSelection()
Methods in org.optaplanner.core.impl.heuristic.selector.move.generic.list that return types with arguments of type Move Modifier and Type Method Description Iterator<Move<Solution_>>
ListChangeMoveSelector. iterator()
Iterator<Move<Solution_>>
ListSwapMoveSelector. iterator()
-
Uses of Move in org.optaplanner.core.impl.heuristic.thread
Methods in org.optaplanner.core.impl.heuristic.thread that return Move Modifier and Type Method Description Move<Solution_>
MoveEvaluationOperation. getMove()
Move<Solution_>
OrderByMoveIndexBlockingQueue.MoveResult. getMove()
Move<Solution_>
ApplyStepOperation. getStep()
Methods in org.optaplanner.core.impl.heuristic.thread with parameters of type Move Modifier and Type Method Description void
OrderByMoveIndexBlockingQueue. addMove(int moveThreadIndex, int stepIndex, int moveIndex, Move<Solution_> move, Score score)
This method is thread-safe.void
OrderByMoveIndexBlockingQueue. addUndoableMove(int moveThreadIndex, int stepIndex, int moveIndex, Move<Solution_> move)
This method is thread-safe.protected void
MoveThreadRunner. predictWorkingStepScore(Move<Solution_> step, Score_ score)
Constructors in org.optaplanner.core.impl.heuristic.thread with parameters of type Move Constructor Description ApplyStepOperation(int stepIndex, Move<Solution_> step, Score_ score)
MoveEvaluationOperation(int stepIndex, int moveIndex, Move<Solution_> move)
MoveResult(int moveThreadIndex, int stepIndex, int moveIndex, Move<Solution_> move, boolean moveDoable, Score score)
-
Uses of Move in org.optaplanner.core.impl.localsearch.scope
Methods in org.optaplanner.core.impl.localsearch.scope that return Move Modifier and Type Method Description Move<Solution_>
LocalSearchStepScope. getStep()
Move<Solution_>
LocalSearchStepScope. getUndoStep()
Methods in org.optaplanner.core.impl.localsearch.scope with parameters of type Move Modifier and Type Method Description void
LocalSearchStepScope. setStep(Move<Solution_> step)
void
LocalSearchStepScope. setUndoStep(Move<Solution_> undoStep)
Constructors in org.optaplanner.core.impl.localsearch.scope with parameters of type Move Constructor Description LocalSearchMoveScope(LocalSearchStepScope<Solution_> stepScope, int moveIndex, Move<Solution_> move)
-
Uses of Move in org.optaplanner.core.impl.partitionedsearch.scope
Classes in org.optaplanner.core.impl.partitionedsearch.scope that implement Move Modifier and Type Class Description class
PartitionChangeMove<Solution_>
Applies a new best solution from a partition child solver into the global working solution of the parent solver. -
Uses of Move in org.optaplanner.core.impl.phase.scope
Fields in org.optaplanner.core.impl.phase.scope declared as Move Modifier and Type Field Description protected Move<Solution_>
AbstractMoveScope. move
Methods in org.optaplanner.core.impl.phase.scope that return Move Modifier and Type Method Description Move<Solution_>
AbstractMoveScope. getMove()
Constructors in org.optaplanner.core.impl.phase.scope with parameters of type Move Constructor Description AbstractMoveScope(int moveIndex, Move<Solution_> move)
-
Uses of Move in org.optaplanner.core.impl.score.director
Methods in org.optaplanner.core.impl.score.director with parameters of type Move Modifier and Type Method Description void
AbstractScoreDirector. assertExpectedUndoMoveScore(Move<Solution_> move, Score_ beforeMoveScore)
void
InnerScoreDirector. assertExpectedUndoMoveScore(Move<Solution_> move, Score_ beforeMoveScore)
Asserts that if theScore
is calculated for the currentworking solution
in the currentScoreDirector
(with incremental calculation residue), it is equal to the parameterbeforeMoveScore
.Score_
AbstractScoreDirector. doAndProcessMove(Move<Solution_> move, boolean assertMoveScoreFromScratch)
void
AbstractScoreDirector. doAndProcessMove(Move<Solution_> move, boolean assertMoveScoreFromScratch, Consumer<Score_> moveProcessor)
Score_
InnerScoreDirector. doAndProcessMove(Move<Solution_> move, boolean assertMoveScoreFromScratch)
void
InnerScoreDirector. doAndProcessMove(Move<Solution_> move, boolean assertMoveScoreFromScratch, Consumer<Score_> moveProcessor)
-