Solution_ - the solution type, the class with the PlanningSolution annotationpublic class ChainedChangeMove<Solution_> extends ChangeMove<Solution_>
| Modifier and Type | Field and Description |
|---|---|
protected SingletonInverseVariableSupply |
inverseVariableSupply |
entity, toPlanningValue, variableDescriptor| Constructor and Description |
|---|
ChainedChangeMove(Object entity,
GenuineVariableDescriptor<Solution_> variableDescriptor,
SingletonInverseVariableSupply inverseVariableSupply,
Object toPlanningValue) |
| Modifier and Type | Method and Description |
|---|---|
ChainedChangeMove<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). |
boolean |
isMoveDoable(ScoreDirector<Solution_> scoreDirector)
Called before a move is evaluated to decide whether the move can be done and evaluated.
|
equals, getEntity, getPlanningEntities, getPlanningValues, getSimpleMoveTypeDescription, getToPlanningValue, getVariableName, hashCode, toStringdoMoveprotected final SingletonInverseVariableSupply inverseVariableSupply
public ChainedChangeMove(Object entity, GenuineVariableDescriptor<Solution_> variableDescriptor, SingletonInverseVariableSupply inverseVariableSupply, Object toPlanningValue)
public boolean isMoveDoable(ScoreDirector<Solution_> scoreDirector)
MovePlanningSolution.It is recommended to keep this method implementation simple: do not use it in an attempt to satisfy normal hard and soft constraints.
Although you could also filter out non-doable moves in for example the MoveSelector
or MoveListFactory, this is not needed as the Solver will do it for you.
isMoveDoable in interface Move<Solution_>isMoveDoable in class ChangeMove<Solution_>scoreDirector - the ScoreDirector not yet modified by the move.public ChainedChangeMove<Solution_> createUndoMove(ScoreDirector<Solution_> scoreDirector)
AbstractMovecreateUndoMove in class ChangeMove<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 ChangeMove<Solution_>scoreDirector - never nullCopyright © 2006–2017 JBoss by Red Hat. All rights reserved.