Package com.artelys.kalis
Class KLinComb
- java.lang.Object
-
- com.artelys.kalis.KConstraint
-
- com.artelys.kalis.KLinComb
-
public class KLinComb extends KConstraint
This class creates a Sum(ai.Xi) { <= , != , == } C constraint
Example :
KIntVarArray X(...); problem.post(2 * X[1] + 3 * X[2] + 5 * X[3] + ... + 7 * X[n] == 3); // or problem.post(2 * X[1] + 3 * X[2] + 5 * X[3] + ... + 7 * X[n] <= 3); // or problem.post(2 * X[1] + 3 * X[2] + 5 * X[3] + ... + 7 * X[n] >= 3); // or problem.post(2 * X[1] + 3 * X[2] + 5 * X[3] + ... + 7 * X[n] != 3);
- Since:
- 2016.1
- See Also:
KConstraint
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
KLinComb.LinCombOperator
-
Field Summary
-
Fields inherited from class com.artelys.kalis.KConstraint
swigCMemOwn
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
delete()
protected void
finalize()
com.artelys.kalis.SWIGTYPE_p_void
getConstraintIPtr()
protected static long
getCPtr(KLinComb 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
-
KLinComb
protected KLinComb(long cPtr, boolean cMemoryOwn)
-
KLinComb
public KLinComb(java.lang.String name, KIntArray coeffs, KIntVarArray vars, int cste, int linCombOperator)
Primary Constructor- Parameters:
name
- name of the constraintcoeffs
- array of coefficients for the variables in the linear combinationvars
- array of variables involved in the linear combinationcste
- constant in the linear combinationlinCombOperator
- operator of the linear constraint {<>,<=,>=,==}
-
KLinComb
public KLinComb(KLinComb toCopy)
Copy Constructor
-
-
Method Detail
-
getCPtr
protected static long getCPtr(KLinComb obj)
-
finalize
protected void finalize()
- Overrides:
finalize
in classKConstraint
-
delete
public void delete()
- Overrides:
delete
in classKConstraint
-
getConstraintIPtr
public com.artelys.kalis.SWIGTYPE_p_void getConstraintIPtr()
-
-