Solution_ - the solution type, the class with the PlanningSolution annotationpublic class ChainedSwapMove<Solution_> extends SwapMove<Solution_>
| Modifier and Type | Field and Description |
|---|---|
protected List<SingletonInverseVariableSupply> |
inverseVariableSupplyList |
leftEntity, rightEntity, variableDescriptorList| Constructor and Description |
|---|
ChainedSwapMove(List<GenuineVariableDescriptor<Solution_>> variableDescriptorList,
List<SingletonInverseVariableSupply> inverseVariableSupplyList,
Object leftEntity,
Object rightEntity) |
| Modifier and Type | Method and Description |
|---|---|
ChainedSwapMove<Solution_> |
createUndoMove(ScoreDirector<Solution_> scoreDirector)
Called before the move is done, so the move can be evaluated and then be undone
without resulting into a permanent change in the solution.
|
protected void |
doMoveOnGenuineVariables(ScoreDirector<Solution_> scoreDirector)
Like
AbstractMove.doMove(ScoreDirector) but without the ScoreDirector.triggerVariableListeners() call
(because AbstractMove.doMove(ScoreDirector) already does that). |
ChainedSwapMove<Solution_> |
rebase(ScoreDirector<Solution_> destinationScoreDirector)
Rebases a move from an origin
ScoreDirector to another destination ScoreDirector
which is usually on another Thread or JVM. |
appendVariablesToString, equals, getLeftEntity, getPlanningEntities, getPlanningValues, getRightEntity, getSimpleMoveTypeDescription, getVariableNameList, hashCode, isMoveDoable, toStringdoMove, rebaseArray, rebaseListprotected final List<SingletonInverseVariableSupply> inverseVariableSupplyList
public ChainedSwapMove(List<GenuineVariableDescriptor<Solution_>> variableDescriptorList, List<SingletonInverseVariableSupply> inverseVariableSupplyList, Object leftEntity, Object rightEntity)
public ChainedSwapMove<Solution_> createUndoMove(ScoreDirector<Solution_> scoreDirector)
AbstractMovecreateUndoMove in class SwapMove<Solution_>scoreDirector - the ScoreDirector not yet modified by the move.protected void doMoveOnGenuineVariables(ScoreDirector<Solution_> scoreDirector)
AbstractMoveAbstractMove.doMove(ScoreDirector) but without the ScoreDirector.triggerVariableListeners() call
(because AbstractMove.doMove(ScoreDirector) already does that).doMoveOnGenuineVariables in class SwapMove<Solution_>scoreDirector - never nullpublic ChainedSwapMove<Solution_> rebase(ScoreDirector<Solution_> destinationScoreDirector)
MoveScoreDirector to another destination ScoreDirector
which is usually on another Thread or JVM.
The new move returned by this method mutates the entities and problem facts
of the destination PlanningSolution of the destination ScoreDirector,
That destination PlanningSolution should be a deep planning clone (or an even deeper clone)
of the origin PlanningSolution that this move was generated from.
That new move does the exact same change as this move,
resulting in the same PlanningSolution state,
presuming that destination PlanningSolution was in the same state
as the original PlanningSolution to begin with.
Generally speaking, an implementation of this method iterates through every entity and fact instance in this move,
translates each one to the destination ScoreDirector with ScoreDirector.lookUpWorkingObject(Object)
and creates a new move instance of the same move type, using those translated instances.
rebase in interface Move<Solution_>rebase in class SwapMove<Solution_>destinationScoreDirector - never null, the ScoreDirector.getWorkingSolution()
that the new move should change the planning entity instances of.Copyright © 2006–2018 JBoss by Red Hat. All rights reserved.