Uses of Interface
jopt.csp.variable.CspGenericFloatConstant

Packages that use CspGenericFloatConstant
jopt.csp.variable The interfaces for building, combining, and constraining variables and expressions  
 

Uses of CspGenericFloatConstant in jopt.csp.variable
 

Methods in jopt.csp.variable that return CspGenericFloatConstant
 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
 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
 

Methods in jopt.csp.variable with parameters of type CspGenericFloatConstant
 CspGenericFloatExpr CspGenericIntExpr.add(CspGenericFloatConstant f)
          Returns an expression representing the sum of this expression with a static generic value
 CspGenericFloatExpr CspGenericIntExpr.subtract(CspGenericFloatConstant f)
          Returns an expression representing the difference of this expression with a static generic value
 CspGenericFloatExpr CspGenericIntExpr.multiply(CspGenericFloatConstant f)
          Returns an expression representing the product of this expression with a static generic value
 CspGenericFloatExpr CspGenericIntExpr.divide(CspGenericFloatConstant f)
          Returns an expression representing the quotient of this expression with a static generic value
 CspGenericFloatExpr CspGenericFloatExpr.add(CspGenericFloatConstant f)
          Returns an expression representing the sum of this expression with a static generic value
 CspGenericFloatExpr CspGenericFloatExpr.subtract(CspGenericFloatConstant f)
          Returns an expression representing the difference of this expression with a static generic value
 CspGenericFloatExpr CspGenericFloatExpr.multiply(CspGenericFloatConstant f)
          Returns an expression representing the product of this expression with a static generic value
 CspGenericFloatExpr CspGenericFloatExpr.divide(CspGenericFloatConstant f)
          Returns an expression representing the quotient of this expression with a static generic value
 CspConstraint CspGenericFloatExpr.eq(CspGenericFloatConstant val)
          Returns a constraint restricting this expression to a value
 CspConstraint CspGenericFloatExpr.leq(CspGenericFloatConstant val)
          Returns a constraint restricting this expression to values below and including a given maximum
 CspConstraint CspGenericFloatExpr.geq(CspGenericFloatConstant val)
          Returns a constraint restricting this expression to values above and including a given minimum
 CspConstraint CspFloatExpr.eq(CspGenericFloatConstant val)
          Returns constraint restricting this expression to a value
 CspConstraint CspFloatExpr.leq(CspGenericFloatConstant val)
          Returns constraint restricting this expression to values below and including a given maximum
 CspConstraint CspFloatExpr.geq(CspGenericFloatConstant val)
          Returns constraint restricting this expression to values above and including a given minimum