Uses of Interface
jopt.csp.variable.CspGenericIntConstant

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

Uses of CspGenericIntConstant in jopt.csp.variable
 

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

Methods in jopt.csp.variable with parameters of type CspGenericIntConstant
 CspConstraint CspIntExpr.eq(CspGenericIntConstant val)
          Returns constraint restricting this expression to a value
 CspConstraint CspIntExpr.lt(CspGenericIntConstant val)
          Returns constraint restricting this expression to values below a given maximum
 CspConstraint CspIntExpr.leq(CspGenericIntConstant val)
          Returns constraint restricting this expression to values below and including a given maximum
 CspConstraint CspIntExpr.gt(CspGenericIntConstant val)
          Returns constraint restricting this expression to values above a given minimum
 CspConstraint CspIntExpr.geq(CspGenericIntConstant val)
          Returns constraint restricting this expression to values above and including a given minimum
 CspConstraint CspIntExpr.neq(CspGenericIntConstant val)
          Returns constraint restricting this expression to all values not equivalent to supplied value
 CspGenericIntExpr CspGenericIntExpr.add(CspGenericIntConstant i)
          Returns an expression representing the sum of this expression with a static generic value
 CspGenericIntExpr CspGenericIntExpr.subtract(CspGenericIntConstant i)
          Returns an expression representing the difference of this expression with a static generic value
 CspGenericIntExpr CspGenericIntExpr.multiply(CspGenericIntConstant i)
          Returns an expression representing the product of this expression with a static generic value
 CspGenericIntExpr CspGenericIntExpr.divide(CspGenericIntConstant i)
          Returns an expression representing the quotient of this expression with a static generic value
 CspConstraint CspGenericIntExpr.eq(CspGenericIntConstant val)
          Returns a constraint restricting this expression to a value
 CspConstraint CspGenericIntExpr.lt(CspGenericIntConstant val)
          Returns a constraint restricting this expression to values below a given maximum
 CspConstraint CspGenericIntExpr.leq(CspGenericIntConstant val)
          Returns a constraint restricting this expression to values below and including a given maximum
 CspConstraint CspGenericIntExpr.gt(CspGenericIntConstant val)
          Returns a constraint restricting this expression to values above a given minimum
 CspConstraint CspGenericIntExpr.geq(CspGenericIntConstant val)
          Returns a constraint restricting this expression to values above and including a given minimum
 CspConstraint CspGenericIntExpr.neq(CspGenericIntConstant val)
          Returns a constraint restricting this expression to all values not equivalent to supplied value