Modifier and Type | Interface and Description |
---|---|
interface |
Var
This interface represents constrained integer variables, the most frequently
used type of constrained objects.
|
interface |
VarBool
This interface represents constrained boolean variables that can be seen
as integer constrained variables with the domain { 0, 1 } but with
a potentially more efficient implementation.
|
interface |
VarReal
This interface represents constrained real variables.
|
interface |
VarSet
This interface represents a constrained set variable
which, when bound, is equal to a set of elements.
|
interface |
VarString
VarString are a special type of constrained variables that are defined using
an array of string values.
|
Modifier and Type | Method and Description |
---|---|
Constraint |
ProblemDelegator.post(double[] array,
ConstrainedVariable[] vars,
java.lang.String oper,
ConstrainedVariable var) |
Constraint |
ProblemDelegator.post(double[] array,
ConstrainedVariable[] vars,
java.lang.String oper,
ConstrainedVariable var) |
Constraint |
Problem.post(double[] array,
ConstrainedVariable[] vars,
java.lang.String oper,
ConstrainedVariable var)
Deprecated.
|
Constraint |
Problem.post(double[] array,
ConstrainedVariable[] vars,
java.lang.String oper,
ConstrainedVariable var)
Deprecated.
|
Constraint |
ProblemDelegator.post(double[] array,
ConstrainedVariable[] vars,
java.lang.String oper,
double value) |
Constraint |
Problem.post(double[] array,
ConstrainedVariable[] vars,
java.lang.String oper,
double value)
Deprecated.
|
VarReal |
ProblemDelegator.scalProd(double[] arrayOfValues,
ConstrainedVariable[] arrayOfVariables) |
VarReal |
Problem.scalProd(double[] arrayOfValues,
ConstrainedVariable[] arrayOfVariables)
Returns a real constrained variable equal to the scalar product of an array of values "arrayOfValues"
and an array of variables "arrayOfVariables".
|