|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CspGenericIndex | |
jopt.csp.variable | The interfaces for building, combining, and constraining variables and expressions |
Uses of CspGenericIndex in jopt.csp.variable |
Methods in jopt.csp.variable that return CspGenericIndex | |
CspGenericIndex |
CspVariableFactory.genericIndex(java.lang.String name,
int size)
Creates a generic index for use with generic variables |
CspGenericIndex[] |
CspGenericNumExpr.getIndices()
Returns the indices that are associated with this expression |
CspGenericIndex[] |
CspGenericConstant.getIndices()
Returns the set of indices used to index this constant |
Methods in jopt.csp.variable with parameters of type CspGenericIndex | |
CspGenericIntExpr |
CspVariableFactory.genericInt(java.lang.String name,
CspGenericIndex index,
CspIntVariable[] variables)
Produces a generic variable that wraps a set of nodes |
CspGenericIntExpr |
CspVariableFactory.genericInt(java.lang.String name,
CspGenericIndex[] indices,
CspIntVariable[] variables)
Produces a generic variable that wraps a set of nodes |
CspGenericIntExpr |
CspVariableFactory.genericInt(java.lang.String name,
CspGenericIndex index,
int min,
int max)
Produces a generic variable that wraps a set of nodes |
CspGenericIntExpr |
CspVariableFactory.genericInt(java.lang.String name,
CspGenericIndex[] indices,
int min,
int max)
Produces a generic variable that wraps a set of nodes |
CspGenericLongExpr |
CspVariableFactory.genericLong(java.lang.String name,
CspGenericIndex index,
CspLongVariable[] variables)
Produces a generic variable that wraps a set of nodes |
CspGenericLongExpr |
CspVariableFactory.genericLong(java.lang.String name,
CspGenericIndex[] indices,
CspLongVariable[] variables)
Produces a generic variable that wraps a set of nodes |
CspGenericLongExpr |
CspVariableFactory.genericLong(java.lang.String name,
CspGenericIndex index,
int min,
int max)
Produces a generic variable that wraps a set of nodes |
CspGenericLongExpr |
CspVariableFactory.genericLong(java.lang.String name,
CspGenericIndex[] indices,
int min,
int max)
Produces a generic variable that wraps a set of nodes |
CspGenericFloatExpr |
CspVariableFactory.genericFloat(java.lang.String name,
CspGenericIndex index,
CspFloatVariable[] variables)
Produces a generic variable that wraps a set of nodes |
CspGenericFloatExpr |
CspVariableFactory.genericFloat(java.lang.String name,
CspGenericIndex[] indices,
CspFloatVariable[] variables)
Produces a generic variable that wraps a set of nodes |
CspGenericFloatExpr |
CspVariableFactory.genericFloat(java.lang.String name,
CspGenericIndex index,
int min,
int max)
Produces a generic variable that wraps a set of nodes |
CspGenericFloatExpr |
CspVariableFactory.genericFloat(java.lang.String name,
CspGenericIndex[] indices,
int min,
int max)
Produces a generic variable that wraps a set of nodes |
CspGenericDoubleExpr |
CspVariableFactory.genericDouble(java.lang.String name,
CspGenericIndex index,
CspDoubleVariable[] variables)
Produces a generic variable that wraps a set of nodes |
CspGenericDoubleExpr |
CspVariableFactory.genericDouble(java.lang.String name,
CspGenericIndex[] indices,
CspDoubleVariable[] variables)
Produces a generic variable that wraps a set of nodes |
CspGenericDoubleExpr |
CspVariableFactory.genericDouble(java.lang.String name,
CspGenericIndex index,
int min,
int max)
Produces a generic variable that wraps a set of nodes |
CspGenericDoubleExpr |
CspVariableFactory.genericDouble(java.lang.String name,
CspGenericIndex[] indices,
int min,
int max)
Produces a generic variable that wraps a set of nodes |
CspGenericBooleanExpr |
CspVariableFactory.genericBoolean(java.lang.String name,
CspGenericIndex[] indices,
CspBooleanExpr[] expressions)
Produces a generic variable that wraps a set of expressions |
CspGenericBooleanExpr |
CspVariableFactory.genericBoolean(java.lang.String name,
CspGenericIndex index,
CspBooleanExpr[] expressions)
Produces a generic variable that wraps a set of expressions |
CspGenericBooleanExpr |
CspVariableFactory.genericBoolean(java.lang.String name,
CspGenericIndex[] indices,
CspConstraint constraint)
Produces a generic variable that wraps a constraint |
CspGenericBooleanExpr |
CspVariableFactory.genericBoolean(java.lang.String name,
CspGenericIndex index,
CspConstraint constraint)
Produces a generic variable that wraps a constraint |
CspGenericIntConstant |
CspVariableFactory.genericIntConst(java.lang.String name,
CspGenericIndex[] indices,
java.lang.Integer[] nodes)
Creates a generic int constant |
CspGenericIntConstant |
CspVariableFactory.genericIntConst(java.lang.String name,
CspGenericIndex[] indices,
int[] nodes)
Creates a generic int constant |
CspGenericDoubleConstant |
CspVariableFactory.genericDoubleConst(java.lang.String name,
CspGenericIndex[] indices,
java.lang.Double[] nodes)
Creates a generic double constant |
CspGenericDoubleConstant |
CspVariableFactory.genericDoubleConst(java.lang.String name,
CspGenericIndex[] indices,
double[] nodes)
Creates a generic double constant |
CspGenericFloatConstant |
CspVariableFactory.genericFloatConst(java.lang.String name,
CspGenericIndex[] indices,
java.lang.Float[] nodes)
Creates a generic float constant |
CspGenericFloatConstant |
CspVariableFactory.genericFloatConst(java.lang.String name,
CspGenericIndex[] indices,
float[] nodes)
Creates a generic float constant |
CspGenericLongConstant |
CspVariableFactory.genericLongConst(java.lang.String name,
CspGenericIndex[] indices,
java.lang.Long[] nodes)
Creates a generic long constant |
CspGenericLongConstant |
CspVariableFactory.genericLongConst(java.lang.String name,
CspGenericIndex[] indices,
long[] nodes)
Creates a generic long constant |
CspGenericBooleanConstant |
CspVariableFactory.genericBooleanConst(java.lang.String name,
CspGenericIndex[] indices,
boolean[] nodes)
Creates a generic boolean constant |
CspGenericIntConstant |
CspVariableFactory.genericIntConst(java.lang.String name,
CspGenericIndex index,
java.lang.Integer[] nodes)
Creates a generic int constant |
CspGenericIntConstant |
CspVariableFactory.genericIntConst(java.lang.String name,
CspGenericIndex index,
int[] nodes)
Creates a generic int constant |
CspGenericDoubleConstant |
CspVariableFactory.genericDoubleConst(java.lang.String name,
CspGenericIndex index,
java.lang.Double[] nodes)
Creates a generic double constant |
CspGenericDoubleConstant |
CspVariableFactory.genericDoubleConst(java.lang.String name,
CspGenericIndex index,
double[] nodes)
Creates a generic double constant |
CspGenericFloatConstant |
CspVariableFactory.genericFloatConst(java.lang.String name,
CspGenericIndex index,
java.lang.Float[] nodes)
Creates a generic float constant |
CspGenericFloatConstant |
CspVariableFactory.genericFloatConst(java.lang.String name,
CspGenericIndex index,
float[] nodes)
Creates a generic float constant |
CspGenericLongConstant |
CspVariableFactory.genericLongConst(java.lang.String name,
CspGenericIndex index,
java.lang.Long[] nodes)
Creates a generic long constant |
CspGenericLongConstant |
CspVariableFactory.genericLongConst(java.lang.String name,
CspGenericIndex index,
long[] nodes)
Creates a generic long constant |
CspGenericBooleanConstant |
CspVariableFactory.genericBooleanConst(java.lang.String name,
CspGenericIndex index,
boolean[] nodes)
Creates a generic boolean constant |
CspIntExpr |
CspMath.summation(CspGenericIntExpr x,
CspGenericIndex[] indexRange,
CspGenericIndexRestriction sourceIdxRestriction)
Creates a variable equal to the summation of values in the generic variable. |
CspLongExpr |
CspMath.summation(CspGenericLongExpr x,
CspGenericIndex[] indexRange,
CspGenericIndexRestriction sourceIdxRestriction)
Creates a variable equal to the summation of values in the generic variable. |
CspFloatExpr |
CspMath.summation(CspGenericFloatExpr x,
CspGenericIndex[] indexRange,
CspGenericIndexRestriction sourceIdxRestriction)
Creates a variable equal to the summation of values in the generic variable. |
CspDoubleExpr |
CspMath.summation(CspGenericDoubleExpr x,
CspGenericIndex[] indexRange,
CspGenericIndexRestriction sourceIdxRestriction)
Creates a variable equal to the summation of values in the generic variable. |
CspGenericNumConstant |
CspGenericNumConstant.createFragment(CspGenericIndex[] fragIndices)
Returns a CspGenericNumConstant based on the specified indices |
boolean |
CspGenericConstant.containsIndex(CspGenericIndex index)
Returns true if this generic constant contains the given index |
CspGenericBooleanConstant |
CspGenericBooleanConstant.createFragment(CspGenericIndex[] fragIndices)
Returns a CspGenericBooleanConstant based on the specified indices |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |