Uses of Interface
org.chocosolver.util.objects.setDataStructures.iterable.IntIterableSet
-
-
Uses of IntIterableSet in org.chocosolver.solver.variables
Methods in org.chocosolver.solver.variables with parameters of type IntIterableSet Modifier and Type Method Description boolean
IntVar. removeAllValuesBut(IntIterableSet values, ICause cause)
Removes all values from the domain ofthis
except those invalues
.boolean
IntVar. removeValues(IntIterableSet values, ICause cause)
Removes the value invalues
from the domain ofthis
. -
Uses of IntIterableSet in org.chocosolver.solver.variables.impl
Methods in org.chocosolver.solver.variables.impl with parameters of type IntIterableSet Modifier and Type Method Description boolean
BitsetArrayIntVarImpl. removeAllValuesBut(IntIterableSet values, ICause cause)
boolean
BitsetIntVarImpl. removeAllValuesBut(IntIterableSet values, ICause cause)
boolean
BoolVarImpl. removeAllValuesBut(IntIterableSet values, ICause cause)
boolean
FixedIntVarImpl. removeAllValuesBut(IntIterableSet values, ICause cause)
boolean
IntervalIntVarImpl. removeAllValuesBut(IntIterableSet values, ICause cause)
boolean
BitsetArrayIntVarImpl. removeValues(IntIterableSet values, ICause cause)
boolean
BitsetIntVarImpl. removeValues(IntIterableSet values, ICause cause)
boolean
BoolVarImpl. removeValues(IntIterableSet values, ICause cause)
boolean
FixedIntVarImpl. removeValues(IntIterableSet values, ICause cause)
boolean
IntervalIntVarImpl. removeValues(IntIterableSet values, ICause cause)
-
Uses of IntIterableSet in org.chocosolver.solver.variables.view
Methods in org.chocosolver.solver.variables.view with parameters of type IntIterableSet Modifier and Type Method Description boolean
BoolNotView. removeAllValuesBut(IntIterableSet values, ICause cause)
boolean
IntBoolView. removeAllValuesBut(IntIterableSet values, ICause cause)
boolean
IntView. removeAllValuesBut(IntIterableSet values, ICause cause)
boolean
BoolNotView. removeValues(IntIterableSet values, ICause cause)
boolean
IntBoolView. removeValues(IntIterableSet values, ICause cause)
boolean
IntView. removeValues(IntIterableSet values, ICause cause)
-
Uses of IntIterableSet in org.chocosolver.util.objects.setDataStructures.iterable
Classes in org.chocosolver.util.objects.setDataStructures.iterable that implement IntIterableSet Modifier and Type Class Description class
IntIterableBitSet
An IntIterableBitSet based on a BitSet Created by cprudhom on 09/07/15.class
IntIterableRangeSet
Concrete implementation ofIntIterableSet
wherein values are stored in range set.Methods in org.chocosolver.util.objects.setDataStructures.iterable that return IntIterableSet Modifier and Type Method Description IntIterableSet
IntIterableBitSet. duplicate()
IntIterableSet
IntIterableSet. duplicate()
Returns a carbon-copy of this setMethods in org.chocosolver.util.objects.setDataStructures.iterable with parameters of type IntIterableSet Modifier and Type Method Description boolean
IntIterableBitSet. addAll(IntIterableSet set)
boolean
IntIterableRangeSet. addAll(IntIterableSet set)
boolean
IntIterableSet. addAll(IntIterableSet set)
Adds all of the elements in the specified set to this set.boolean
IntIterableBitSet. removeAll(IntIterableSet set)
boolean
IntIterableRangeSet. removeAll(IntIterableSet set)
boolean
IntIterableSet. removeAll(IntIterableSet set)
Removes all of this set's elements that are also contained in the specified set.boolean
IntIterableBitSet. retainAll(IntIterableSet set)
boolean
IntIterableRangeSet. retainAll(IntIterableSet set)
boolean
IntIterableSet. retainAll(IntIterableSet set)
Retains only the elements in this set that are contained in the specified set.
-