|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CspLongVariable | |
jopt.csp | |
jopt.csp.search | The interfaces to all your searching needs. |
jopt.csp.solution | Defines structures for storing solutions to constraint satisfaction problems |
jopt.csp.variable | The interfaces for building, combining, and constraining variables and expressions |
Uses of CspLongVariable in jopt.csp |
Methods in jopt.csp with parameters of type CspLongVariable | |
boolean |
CspSolver.solve(CspLongVariable[] vars)
Resets the solver and locates a solution for an array of variables within the problem contained by the solver |
Uses of CspLongVariable in jopt.csp.search |
Methods in jopt.csp.search with parameters of type CspLongVariable | |
SearchAction |
SearchActions.generate(CspLongVariable[] vars)
Creates an action that will instantiate an array of variables in order. |
SearchAction |
SearchActions.generate(CspLongVariable[] vars,
LongSelector selector)
Creates an action that will instantiate an array of variables in order. |
SearchAction |
SearchActions.splitGenerate(CspLongVariable[] vars)
Creates an action that will instantiate an array of variables in order. |
SearchAction |
SearchActions.splitGenerate(CspLongVariable[] vars,
boolean minFirst)
Creates an action that will instantiate an array of variables in order. |
long |
LongSelector.select(CspLongVariable var)
|
Uses of CspLongVariable in jopt.csp.solution |
Methods in jopt.csp.solution with parameters of type CspLongVariable | |
LongSolution |
SolverSolution.add(CspLongVariable var)
Adds a long variable solution |
LongSolution |
SolverSolution.getSolution(CspLongVariable var)
Returns a stored solution for a long variable |
long |
SolverSolution.getMin(CspLongVariable var)
Retrieves minimum value of solution for the specified variable |
long |
SolverSolution.getMax(CspLongVariable var)
Retrieves maximum value of solution for the specified variable |
long |
SolverSolution.getValue(CspLongVariable var)
Returns the value of the solution. |
void |
SolverSolution.setMin(CspLongVariable var,
long min)
Sets minimum value of solution for the specified variable |
void |
SolverSolution.setMax(CspLongVariable var,
long max)
Sets maximum value of solution for the specified variable |
void |
SolverSolution.setValue(CspLongVariable var,
long val)
Sets both the min / max value of solution to a single value |
Uses of CspLongVariable in jopt.csp.variable |
Methods in jopt.csp.variable that return CspLongVariable | |
CspLongVariable |
CspVariableFactory.longVar(java.lang.String name,
long min,
long max)
Creates an instance of a CspLongVariable object; uses an interval-based domain by default |
CspLongVariable |
CspVariableFactory.longVar(java.lang.String name,
long min,
long max,
boolean sparse)
Creates an instance of a CspLongVariable object |
CspLongVariable |
CspVariableFactory.longVar(java.lang.String name,
CspLongVariable var)
Creates an instance of a CspLongVariable object |
CspLongVariable |
CspVariableFactory.longVar(java.lang.String name,
CspLongCast expr)
Creates an instance of a CspLongVariable object based on an expression. |
Methods in jopt.csp.variable with parameters of type CspLongVariable | |
CspLongVariable |
CspVariableFactory.longVar(java.lang.String name,
CspLongVariable var)
Creates an instance of a CspLongVariable object |
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 |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |