Uses of Interface
jopt.csp.solution.VariableSolution

Packages that use VariableSolution
jopt.csp.solution Defines structures for storing solutions to constraint satisfaction problems 
jopt.csp.util Contains several foundational utility classes and associated interfaces. 
 

Uses of VariableSolution in jopt.csp.solution
 

Classes in jopt.csp.solution that implement VariableSolution
 class BooleanSolution
          Solution to a boolean variable
 class DoubleSolution
          Solution to an double variable
 class FloatSolution
          Solution to an float variable
 class IntSolution
          Solution to an integer variable
 class LongSolution
          Solution to an long variable
 class SetSolution
          Solution to a set variable
 

Methods in jopt.csp.solution that return VariableSolution
 VariableSolution SolverSolution.getSolution(CspVariable var)
          Returns a stored solution for a variable
 

Uses of VariableSolution in jopt.csp.util
 

Methods in jopt.csp.util with parameters of type VariableSolution
static long LongUtil.getMin(VariableSolution sol)
          Returns minimum value of a numeric expression as a double type
static long LongUtil.getMax(VariableSolution sol)
          Returns maximum value of a numeric expression as a double type
static int IntegerUtil.getMin(VariableSolution sol)
          Returns minimum value of a numeric expression as a double type
static int IntegerUtil.getMax(VariableSolution sol)
          Returns maximum value of a numeric expression as a double type
static float FloatUtil.getMin(VariableSolution sol)
          Returns minimum value of a numeric expression as a double type
static float FloatUtil.getMax(VariableSolution sol)
          Returns maximum value of a numeric expression as a double type
static double DoubleUtil.getMin(VariableSolution sol)
          Returns minimum value of a numeric expression as a double type
static double DoubleUtil.getMax(VariableSolution sol)
          Returns maximum value of a numeric expression as a double type