Package com.artelys.kalis
Class KDistanceLowerThanXyc
- java.lang.Object
-
- com.artelys.kalis.KConstraint
-
- com.artelys.kalis.KDistanceLowerThanXyc
-
public class KDistanceLowerThanXyc extends KConstraint
This class creates a abs(X-Y) <= C constraint
Example :
KIntVar X(...); KIntVar Y(...); // ... problem.post(KDistanceLowerThanXyc(X,Y,3)); // |X-Y| <= 3
- Since:
- 2016.1
- See Also:
KConstraint
-
-
Field Summary
-
Fields inherited from class com.artelys.kalis.KConstraint
swigCMemOwn
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
KDistanceLowerThanXyc(long cPtr, boolean cMemoryOwn)
KDistanceLowerThanXyc(KDistanceLowerThanXyc toCopy)
Copy ConstructorKDistanceLowerThanXyc(KIntVar v1, KIntVar v2, int c)
Primary constructor of abs(v1-v2) <= C
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
delete()
protected void
finalize()
protected static long
getCPtr(KDistanceLowerThanXyc obj)
-
Methods inherited from class com.artelys.kalis.KConstraint
askIfEntailed, getArity, getCopyPtr, getCPtr, getInstance, getInstanceCopyPtr, getLinearRelaxation, getLinearRelaxation, getName, getPriority, getProblem, getTag, getTypeInfo, isGetLinearRelaxationImplemented, print, print, setName, setPriority, setTag
-
-
-
-
Constructor Detail
-
KDistanceLowerThanXyc
protected KDistanceLowerThanXyc(long cPtr, boolean cMemoryOwn)
-
KDistanceLowerThanXyc
public KDistanceLowerThanXyc(KIntVar v1, KIntVar v2, int c)
Primary constructor of abs(v1-v2) <= C
- Parameters:
v1
- the v1 variablev2
- the v2 variablec
- the constant
-
KDistanceLowerThanXyc
public KDistanceLowerThanXyc(KDistanceLowerThanXyc toCopy)
Copy Constructor
-
-
Method Detail
-
getCPtr
protected static long getCPtr(KDistanceLowerThanXyc obj)
-
finalize
protected void finalize()
- Overrides:
finalize
in classKConstraint
-
delete
public void delete()
- Overrides:
delete
in classKConstraint
-
-