Package com.artelys.kalis
Class KNumDistanceLowerThanXyc
- java.lang.Object
-
- com.artelys.kalis.KConstraint
-
- com.artelys.kalis.KNumDistanceLowerThanXyc
-
public class KNumDistanceLowerThanXyc extends KConstraint
This class creates a `abs(X-Y) <= C` constraint
Example :
KNumVar X(...); KNumVar 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
KNumDistanceLowerThanXyc(long cPtr, boolean cMemoryOwn)
KNumDistanceLowerThanXyc(KNumDistanceLowerThanXyc toCopy)
Copy ConstructorKNumDistanceLowerThanXyc(KNumVar v1, KNumVar v2, double 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(KNumDistanceLowerThanXyc 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
-
KNumDistanceLowerThanXyc
protected KNumDistanceLowerThanXyc(long cPtr, boolean cMemoryOwn)
-
KNumDistanceLowerThanXyc
public KNumDistanceLowerThanXyc(KNumVar v1, KNumVar v2, double c)
Primary constructor of `abs(v1-v2) <= C`
- Parameters:
v1
- the v1 variablev2
- the v2 variablec
- the constant
-
KNumDistanceLowerThanXyc
public KNumDistanceLowerThanXyc(KNumDistanceLowerThanXyc toCopy)
Copy Constructor
-
-
Method Detail
-
getCPtr
protected static long getCPtr(KNumDistanceLowerThanXyc obj)
-
finalize
protected void finalize()
- Overrides:
finalize
in classKConstraint
-
delete
public void delete()
- Overrides:
delete
in classKConstraint
-
-