Class MoveSeq
- java.lang.Object
-
- org.chocosolver.solver.search.loop.move.MoveSeq
-
- All Implemented Interfaces:
Move
public class MoveSeq extends Object implements Move
BETA: This a work-in-progress. It is certainly not bug free, specially the repair method may lead to unexpected behavior. A move made of two or more moves. The i^th move is called when the i-1 ^th returns false. Created by cprudhom on 29/10/2015. Project: choco.- Since:
- 29/10/2015
- Author:
- Charles Prud'homme
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
extend(Solver solver)
Performs a move when the CSP associated to the current node of the search space is not proven to be not consistent.List<Move>
getChildMoves()
Returns the child moves or null Some Move only accepts one single move as child.<V extends Variable>
AbstractStrategy<V>getStrategy()
Returns the search strategy in use.boolean
init()
Called before the search starts.boolean
repair(Solver solver)
Performs a move when the CSP associated to the current node of the search space is proven to be not consistent.void
setChildMoves(List<Move> someMoves)
Overrides this child moves (if possible and if any).<V extends Variable>
voidsetStrategy(AbstractStrategy<V> aStrategy)
Defines a search strategy, that is, a service which computes and returns decisions.void
setTopDecisionPosition(int position)
Indicates the position of decision made just before selecting this move.
-
-
-
Method Detail
-
init
public boolean init()
Description copied from interface:Move
Called before the search starts. Also initializes the search strategy.
-
extend
public boolean extend(Solver solver)
Description copied from interface:Move
Performs a move when the CSP associated to the current node of the search space is not proven to be not consistent.
-
repair
public boolean repair(Solver solver)
Description copied from interface:Move
Performs a move when the CSP associated to the current node of the search space is proven to be not consistent.
-
setTopDecisionPosition
public void setTopDecisionPosition(int position)
Description copied from interface:Move
Indicates the position of decision made just before selecting this move. When only one "terminal" move is declared, the top decision decision is -1. When dealing with a sequence of Move, the position is the one of the last decision of the previous move. In consequence, when backtracking, the right move can be applied or stopped when needed. This has to be declared on the first call toMove.extend(Solver)
and is checked onMove.repair(Solver)
.- Specified by:
setTopDecisionPosition
in interfaceMove
- Parameters:
position
- position of the last decision taken before applying this move
-
getStrategy
public <V extends Variable> AbstractStrategy<V> getStrategy()
Description copied from interface:Move
Returns the search strategy in use.- Specified by:
getStrategy
in interfaceMove
- Type Parameters:
V
- the type of variable managed by the strategy- Returns:
- the current search strategy
-
setStrategy
public <V extends Variable> void setStrategy(AbstractStrategy<V> aStrategy)
Description copied from interface:Move
Defines a search strategy, that is, a service which computes and returns decisions.- Specified by:
setStrategy
in interfaceMove
- Type Parameters:
V
- the type of variable managed by the strategy- Parameters:
aStrategy
- a search strategy
-
getChildMoves
public List<Move> getChildMoves()
Description copied from interface:Move
Returns the child moves or null Some Move only accepts one single move as child.- Specified by:
getChildMoves
in interfaceMove
- Returns:
- the child moves
-
setChildMoves
public void setChildMoves(List<Move> someMoves)
Description copied from interface:Move
Overrides this child moves (if possible and if any). Some Move only accepts one single move as child.- Specified by:
setChildMoves
in interfaceMove
- Parameters:
someMoves
- a new child move
-
-