java.lang.Object
org.maxicp.cp.engine.core.AbstractCPConstraint
org.maxicp.cp.engine.constraints.setvar.IsIncluded
- All Implemented Interfaces:
CPConstraint,ConcreteConstraint<ConcreteCPModel>
Constraint that enforces a boolean variable to be true if a value is included in a set.
-
Constructor Summary
ConstructorsConstructorDescriptionIsIncluded(CPBoolVar bool, CPSetVar set, int v) Creates a constraint that links a boolean variable to the inclusion of a value in a set. -
Method Summary
Methods inherited from class org.maxicp.cp.engine.core.AbstractCPConstraint
getSolver, isActive, isScheduled, priority, registerDelta, setActive, setScheduled, updateDeltas
-
Constructor Details
-
IsIncluded
Creates a constraint that links a boolean variable to the inclusion of a value in a set.- Parameters:
bool- the boolean variableset- the set variablev- the value to be included/excluded
-
-
Method Details
-
post
public void post()Description copied from interface:CPConstraintInitializes the constraint when it is posted to the solver.- Specified by:
postin interfaceCPConstraint- Overrides:
postin classAbstractCPConstraint
-
propagate
public void propagate()Description copied from interface:CPConstraintPropagates the constraint.- Specified by:
propagatein interfaceCPConstraint- Overrides:
propagatein classAbstractCPConstraint
-