|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.ObjectJaCoP.search.Shaving<T>
public class Shaving<T extends IntVar>
Defines functionality of shaving. Plugin in this object to search to change your depth first search to a search with shaving capabilities. Shaving Each search level stores the variable value pairs which were shaved at a given level. Shaving speculation. The right child is using all the shavable pairs from the subtree rooted at the sibling of the current search node. If shaving fails then it is recorded in non shavable. Not-shavable speculation Every time a variable value pair is being schedule for shavability check then it is checked if that pair was not already checked for shavability before with a negative results. If so, then check is not performed but also entry in not-shavable is removed. If variable value pair proofs to be not shavable then this variable value pair is recorded into Not-shavable speculation. Quick shave - upon exiting any subtree the variable value pair which was choosen at the root of that subtree is recorded as shavable variable value pair.
| Field Summary | |
|---|---|
int |
failures
It stores number of failed shaving attempts. |
boolean |
onlyFailedConstraint
It specifies if only the last failed constraint is allowed to suggest shaving values. |
boolean |
onlyIntVarsOfFailedConstraint
It specifies if only variables in the scope of the last failed constraint are allowed to be used in shaving attempts. |
boolean |
quickShave
It specifies if the quickShave approach should be also used. |
int |
successes
It stores number of successful shaving attempts. |
java.util.HashSet<IntVar> |
varsOfFailedConstraint
It stores the variables of the last failed constraints. |
| Constructor Summary | |
|---|---|
Shaving()
|
|
| Method Summary | |
|---|---|
void |
addShavingConstraint(Constraint c)
It adds shaving constraint to the list of constraints guiding shaving. |
boolean |
executeAfterConsistency(boolean consistent)
It is executed right after consistency of the current search node. |
boolean |
leftChild(IntVar var,
int value,
boolean status)
It is executed after exiting the left child. |
boolean |
leftChild(PrimitiveConstraint choice,
boolean status)
It is executed after exiting the left child. |
void |
rightChild(IntVar var,
int value,
boolean status)
It is executed after exiting the right child. |
void |
rightChild(PrimitiveConstraint choice,
boolean status)
It is executed after exiting the right child. |
void |
setChildrenListeners(ConsistencyListener child)
Setting one child listener. |
void |
setChildrenListeners(ConsistencyListener[] children)
Each of the child listeners will be called and the return code from them will be combined (taken into account) by a parent). |
void |
setChildrenListeners(ExitChildListener child)
It adds one child listener. |
void |
setChildrenListeners(ExitChildListener[] children)
It sets the children listeners for the current listener. |
void |
setStore(Store store)
It specifies the constraint store in which context the shaving will take place. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public boolean onlyFailedConstraint
public boolean onlyIntVarsOfFailedConstraint
public java.util.HashSet<IntVar> varsOfFailedConstraint
public boolean quickShave
public int successes
public int failures
| Constructor Detail |
|---|
public Shaving()
| Method Detail |
|---|
public boolean leftChild(IntVar var,
int value,
boolean status)
ExitChildListener
leftChild in interface ExitChildListener<T extends IntVar>var - variable used in the choice point.value - value used in the choice point.status - true if the solution was found in the child subtree, false otherwise.
public boolean leftChild(PrimitiveConstraint choice,
boolean status)
ExitChildListener
leftChild in interface ExitChildListener<T extends IntVar>choice - primitive constraint used as the base of the choice point.status - true if the solution was found in the child subtree, false otherwise.
public void rightChild(IntVar var,
int value,
boolean status)
ExitChildListener
rightChild in interface ExitChildListener<T extends IntVar>var - variable used in the choice point.value - value used in the choice point.status - true if the solution was found in the child subtree, false otherwise.
exit the current node with false
public void rightChild(PrimitiveConstraint choice,
boolean status)
ExitChildListener
rightChild in interface ExitChildListener<T extends IntVar>choice - primitive constraint used as the base of the choice point.status - true if the solution was found in the child subtree, false otherwise.
exit the current node with falsepublic void setChildrenListeners(ConsistencyListener[] children)
ConsistencyListener
setChildrenListeners in interface ConsistencyListenerchildren - the children listeners attached to this listener.public void setChildrenListeners(ExitChildListener[] children)
ExitChildListener
setChildrenListeners in interface ExitChildListener<T extends IntVar>children - array containing children listeners.public void setChildrenListeners(ConsistencyListener child)
ConsistencyListener
setChildrenListeners in interface ConsistencyListenerchild - the only child listener added to this consistency listener.public void setChildrenListeners(ExitChildListener child)
ExitChildListener
setChildrenListeners in interface ExitChildListener<T extends IntVar>child - added child listener.public boolean executeAfterConsistency(boolean consistent)
ConsistencyListener
executeAfterConsistency in interface ConsistencyListenerconsistent - specifies if the consistency call returned true or false.
public void addShavingConstraint(Constraint c)
c - constraint which is added to the list of guiding constraints.public void setStore(Store store)
store - constraint store.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||