public class BoundDomain extends IntDomain
| Modifier and Type | Field and Description |
|---|---|
static BoundDomain |
emptyDomain
It predefines empty domain so there is no need to constantly create it when
needed.
|
int |
max
The maximal value of the domain.
|
int |
min
The minimal value of the domain.
|
BoundDomain |
previousDomain
It specifies the previous domain which was used by this domain.
|
ANY, BOUND, BoundDomainID, emptyIntDomain, eventsInclusion, GROUND, IntervalDomainID, MaxInt, MinInt, SmallDenseDomainIDfailException, modelConstraints, modelConstraintsToEvaluate, NOINFO, NONE, searchConstraints, searchConstraintsCloned, searchConstraintsToEvaluate, stamp| Constructor and Description |
|---|
BoundDomain()
It is a constructor which will create an empty Bound domain.
|
BoundDomain(int min,
int max)
Creates a new instance of BoundDomain.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addDom(IntDomain domain)
It adds values as specified by the parameter to the domain.
|
String |
checkInvariants()
It checks if the domain has correct state.
|
void |
clear()
It removes all elements.
|
BoundDomain |
clone()
It clones the domain object.
|
BoundDomain |
cloneLight()
It clones this domain.
|
IntDomain |
complement()
It creates a complement of a domain.
|
boolean |
contains(int value)
It checks if value belongs to the domain.
|
boolean |
contains(IntDomain domain)
It specifies if the current domain contains the domain given as a
parameter.
|
boolean |
contains(int min,
int max)
It checks if an interval min..max belongs to the domain.
|
IntDomain |
divide(int div)
It divides the domain by a given constant.
|
int |
domainID()
It returns an unique identifier of the domain.
|
boolean |
eq(IntDomain domain)
It specifies if the other int domain is equal to this one.
|
int |
getElementAt(int index)
It access the element at the specified position.
|
Interval |
getInterval(int position)
It returns required interval.
|
int |
getRandomValue()
It returns a random value from the domain.
|
int |
getSize()
It returns the size of the domain.
|
void |
in(int storeLevel,
Var var,
IntDomain domain)
It updates the domain to have values only within the domain.
|
void |
in(int storeLevel,
Var var,
int min,
int max)
It updates the domain to have values only within the interval min..max.
|
void |
inComplement(int storeLevel,
Var var,
int complement)
It updates the domain to not contain the value complement.
|
void |
inComplement(int storeLevel,
Var var,
int min,
int max)
It updates the domain so it does not contain the supplied interval.
|
void |
inMax(int storeLevel,
Var var,
int max)
It updates the domain according to the maximum value and stamp value.
|
void |
inMin(int storeLevel,
Var var,
int min)
It updates the domain according to the minimum value and stamp value.
|
void |
inShift(int storeLevel,
Var var,
IntDomain domain,
int shift)
It updates the domain to contain the elements as specifed by the domain,
which is shifted.
|
IntDomain |
intersect(IntDomain dom)
It intersects current domain with the one given as a parameter.
|
IntDomain |
intersect(int min,
int max)
In intersects current domain with the interval min..max.
|
int |
intersectAdapt(IntDomain intersect)
It computes an intersection with a given domain and stores it in this domain.
|
int |
intersectAdapt(int minIntersect,
int maxIntersect)
It computes an intersection of this domain with an interval [min..max].
|
IntervalEnumeration |
intervalEnumeration()
It returns interval enumeration of the domain values.
|
boolean |
isEmpty()
It returns true if given domain is empty.
|
boolean |
isIntersecting(IntDomain domain)
Checks if two domains intersect.
|
boolean |
isIntersecting(int min,
int max)
It checks if interval min..max intersects with current domain.
|
boolean |
isNumeric()
It specifies if domain is a finite domain of numeric values (integers).
|
boolean |
isSparseRepresentation()
It specifies if the domain type is more suited to representing sparse
domain.
|
int |
leftElement(int intervalNo)
It returns the left most element of the given interval.
|
int |
max()
It returns the maximum value in a domain.
|
int |
min()
It returns the minimum value in a domain.
|
IntDomain |
multiply(int mul)
It multiplies the domain by a given constant.
|
int |
nextValue(int value)
It gives next value in the domain from the given one (lexigraphical
ordering).
|
int |
noIntervals()
It returns number of intervals required to represent this domain.
|
IntDomain |
previousDomain()
It returns domain at earlier level at which the change has occurred.
|
int |
previousValue(int value)
It gives previous value in the domain from the given one (lexigraphical
ordering).
|
void |
putModelConstraint(int storeLevel,
Var var,
Constraint C,
int pruningEvent)
It adds a constraint to a domain, it should only be called by
putConstraint function of Variable object.
|
void |
putSearchConstraint(int storeLevel,
Var var,
Constraint C)
It adds a constraint to a domain, it should only be called by
putConstraint function of Variable object.
|
IntDomain |
recentDomainPruning(int storeLevel)
It returns the values which have been removed at current store level.
|
void |
removeLevel(int level,
Var var)
It removes the specified level.
|
void |
removeModelConstraint(int storeLevel,
Var var,
Constraint C)
It removes a constraint from a domain, it should only be called by
removeConstraint function of Variable object.
|
void |
removeSearchConstraint(int storeLevel,
Var var,
int position,
Constraint C)
It removes a constraint from a domain, it should only be called by
removeConstraint function of Variable object.
|
int |
rightElement(int intervalNo)
It returns the right most element of the given interval.
|
void |
setDomain(IntDomain domain)
It sets the domain to the specified domain.
|
void |
setDomain(int min,
int max)
It sets this domain to contain exactly all values between min and max.
|
boolean |
singleton()
It returns true if given domain has only one element.
|
boolean |
singleton(int c)
It returns true if given domain has only one element equal c.
|
int |
sizeConstraintsOriginal()
It returns all constraints which are associated with variable, even the
ones which are already satisfied.
|
int |
sizeOfIntersection(IntDomain domain)
It computes the size of the intersection between this domain and the domain
supplied as a parameter.
|
IntDomain |
subtract(int value)
It intersects with the domain which is a complement of value.
|
IntDomain |
subtract(IntDomain domain)
It subtracts domain from current domain and returns the result.
|
BoundDomain |
subtract(int min,
int max)
It subtracts interval min..max.
|
void |
subtractAdapt(int complement)
It removes value from the domain.
|
void |
subtractAdapt(int min,
int max)
It removes all values between min and max to the domain.
|
String |
toString()
It returns string description of the domain (only values in the domain).
|
String |
toStringConstraints()
It returns string description of the constraints attached to the domain.
|
String |
toStringFull()
It returns complete string description containing all relevant
information about the domain.
|
IntDomain |
union(int value)
It computes union of this domain and value.
|
IntDomain |
union(IntDomain domain)
It computes union of the supplied domain with this domain.
|
IntDomain |
union(int min,
int max)
It computes union of this domain and the interval.
|
void |
unionAdapt(int value)
It adds a values to the domain.
|
void |
unionAdapt(Interval i)
It adds interval of values to the domain.
|
void |
unionAdapt(int min,
int max)
It adds all values between min and max to the domain.
|
ValueEnumeration |
valueEnumeration()
It returns value enumeration of the domain values.
|
divBounds, divIntBounds, elementsSmallerThan, getEventsInclusion, in, inValue, lex, mulBounds, multiply, noConstraints, singleton, toIntArray, unionAdapt, valueconstraints, noSearchConstraints, searchConstraints, setStamp, sizeConstraints, stamppublic int min
public int max
public BoundDomain previousDomain
public static BoundDomain emptyDomain
public BoundDomain()
public BoundDomain(int min,
int max)
min - it specifies the left bound of the BoundDomain (inclusive).max - it specifies the right bound of the BoundDomain (inclusive).public void unionAdapt(Interval i)
IntDomainunionAdapt in class IntDomaini - public void addDom(IntDomain domain)
IntDomainpublic void unionAdapt(int min,
int max)
IntDomainunionAdapt in class IntDomainmin - the left bound of the interval being added.max - the right bound of the interval being added.public void clear()
Domainpublic IntDomain previousDomain()
IntDomainpreviousDomain in class IntDomainpublic BoundDomain clone()
Domainpublic BoundDomain cloneLight()
cloneLight in class IntDomainpublic IntDomain complement()
IntDomaincomplement in class IntDomainpublic boolean contains(IntDomain domain)
IntDomainpublic boolean contains(int value)
IntDomainpublic IntDomain divide(int div)
div - the constant by which the domain should be divided.public int domainID()
Domainpublic boolean eq(IntDomain domain)
IntDomainpublic Interval getInterval(int position)
IntDomaingetInterval in class IntDomainposition - the position of the interval.public int getSize()
IntDomainpublic void in(int storeLevel,
Var var,
int min,
int max)
IntDomainpublic void in(int storeLevel,
Var var,
IntDomain domain)
IntDomainpublic void inComplement(int storeLevel,
Var var,
int complement)
IntDomaininComplement in class IntDomainstoreLevel - level of the store at which the update occurs.var - variable for which this domain is used.complement - value which is removed from the domain if it belonged to the domain.public void inComplement(int storeLevel,
Var var,
int min,
int max)
IntDomaininComplement in class IntDomainstoreLevel - level of the store at which the update occurs.var - variable for which this domain is used.min - the left bound of the interval (inclusive).max - the right bound of the interval (inclusive).public void inMax(int storeLevel,
Var var,
int max)
IntDomainpublic void inMin(int storeLevel,
Var var,
int min)
IntDomainpublic void inShift(int storeLevel,
Var var,
IntDomain domain,
int shift)
IntDomainpublic IntDomain intersect(IntDomain dom)
IntDomainpublic IntDomain intersect(int min, int max)
IntDomainpublic IntDomain subtract(int value)
IntDomainpublic IntervalEnumeration intervalEnumeration()
IntDomainintervalEnumeration in class IntDomainpublic boolean isEmpty()
Domainpublic boolean isIntersecting(IntDomain domain)
IntDomainisIntersecting in class IntDomaindomain - the domain for which intersection is checked.public boolean isIntersecting(int min,
int max)
IntDomainisIntersecting in class IntDomainmin - the left bound of the interval.max - the right bound of the interval.public boolean isNumeric()
Domainpublic boolean isSparseRepresentation()
DomainisSparseRepresentation in class Domainpublic int leftElement(int intervalNo)
IntDomainleftElement in class IntDomainintervalNo - the interval number.public int max()
IntDomainpublic int min()
IntDomainpublic IntDomain multiply(int mul)
mul - a factor by which the domain is being multiplied.public int nextValue(int value)
IntDomainpublic int noIntervals()
IntDomainnoIntervals in class IntDomainpublic void putModelConstraint(int storeLevel,
Var var,
Constraint C,
int pruningEvent)
putModelConstraint in class DomainstoreLevel - the level at which the model constraint is to be added.var - variable to which the constraint is attached to.C - the constraint which is being attached to a variable.pruningEvent - the type of the prunning event required to check the consistency of the attached constraint.public void putSearchConstraint(int storeLevel,
Var var,
Constraint C)
putSearchConstraint in class DomainstoreLevel - the level at which the search constraint is to be added.var - variable to which the constraint is attached to.C - the constraint which is being attached to a variable.public IntDomain recentDomainPruning(int storeLevel)
IntDomainrecentDomainPruning in class IntDomainstoreLevel - the current store level.public void removeLevel(int level,
Var var)
DomainremoveLevel in class Domainlevel - the level which is being removed.var - the variable to which this domain belonged to.public void removeSearchConstraint(int storeLevel,
Var var,
int position,
Constraint C)
removeSearchConstraint in class DomainstoreLevel - specifies the current level of the store, from which it should be removed.var - specifies variable for which the constraint is being removed.position - specifies the position of the removed constraint.C - the constraint which is being removed.public void removeModelConstraint(int storeLevel,
Var var,
Constraint C)
removeModelConstraint in class DomainstoreLevel - specifies the current level of the store, from which it should be removed.var - specifies variable for which the constraint is being removed.C - the constraint which is being removed.public int rightElement(int intervalNo)
IntDomainrightElement in class IntDomainintervalNo - the interval number.public void setDomain(IntDomain domain)
IntDomainpublic void setDomain(int min,
int max)
IntDomainpublic boolean singleton()
Domainpublic boolean singleton(int c)
IntDomainpublic int sizeConstraintsOriginal()
DomainsizeConstraintsOriginal in class Domainpublic IntDomain subtract(IntDomain domain)
IntDomainpublic BoundDomain subtract(int min, int max)
IntDomainpublic String toString()
Domainpublic String toStringConstraints()
DomaintoStringConstraints in class Domainpublic String toStringFull()
DomaintoStringFull in class Domainpublic IntDomain union(IntDomain domain)
IntDomainpublic IntDomain union(int min, int max)
IntDomainpublic IntDomain union(int value)
IntDomainpublic ValueEnumeration valueEnumeration()
IntDomainvalueEnumeration in class IntDomainpublic int previousValue(int value)
IntDomainpreviousValue in class IntDomainvalue - before which a value is seeked for.public String checkInvariants()
DomaincheckInvariants in class Domainpublic void unionAdapt(int value)
IntDomainunionAdapt in class IntDomainvalue - value being added to the domain.public void subtractAdapt(int complement)
IntDomainsubtractAdapt in class IntDomaincomplement - the value for which the complement is computedpublic void subtractAdapt(int min,
int max)
IntDomainsubtractAdapt in class IntDomainmin - the left bound of the interval being removed.max - the right bound of the interval being removed.public int intersectAdapt(IntDomain intersect)
IntDomainintersectAdapt in class IntDomainintersect - domain with which the intersection is being computed.public int intersectAdapt(int minIntersect,
int maxIntersect)
IntDomainintersectAdapt in class IntDomainminIntersect - the minimum value of the interval used in the intersection computation.maxIntersect - the maximum value of the interval used in the intersection computation.public int getElementAt(int index)
IntDomaingetElementAt in class IntDomainindex - the position of the element, indexing starts from 0.public int sizeOfIntersection(IntDomain domain)
IntDomainsizeOfIntersection in class IntDomaindomain - the domain with which the intersection is computed.public int getRandomValue()
IntDomaingetRandomValue in class IntDomainpublic boolean contains(int min,
int max)
IntDomainCopyright © 2016. All rights reserved.