- add(double) - Method in class com.quantego.clp.CLPExpression
-
Add a constant term to the expression.
- add(double, CLPVariable) - Method in class com.quantego.clp.CLPExpression
-
Add a new term to the expression.
- add(CLPVariable, double) - Method in class com.quantego.clp.CLPExpression
-
Add a new term to the expression.
- add(CLPVariable...) - Method in class com.quantego.clp.CLPExpression
-
Add the sum of multiple variables.
- add(double, CLPVariable...) - Method in class com.quantego.clp.CLPExpression
-
Add the sum of multiple variables, each multiplied by the same scalar.
- add(double[], CLPVariable[]) - Method in class com.quantego.clp.CLPExpression
-
Add the sum of multiple terms.
- add(Map<CLPVariable, Double>) - Method in class com.quantego.clp.CLPExpression
-
Add the sum of multiple terms.
- addConstraint(Map<CLPVariable, Double>, CLPConstraint.TYPE, Double) - Method in class com.quantego.clp.CLP
-
Add a new constraint to the model without using CLP#buildExpression()
.
- addObjective(Map<CLPVariable, Double>, Double) - Method in class com.quantego.clp.CLP
-
Set the objective function to the model without using CLP#buildExpression()
.
- addVariable() - Method in class com.quantego.clp.CLP
-
Add a new variable to the model
- addVariables(int) - Method in class com.quantego.clp.CLP
-
Create a set of variables.
- algorithm(CLP.ALGORITHM) - Method in class com.quantego.clp.CLP
-
- asObjective() - Method in class com.quantego.clp.CLPExpression
-
Set this expression as objective function of the
CLP
model.