Uses of Interface
jopt.csp.variable.CspGenericLongExpr

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

Uses of CspGenericLongExpr in jopt.csp.variable
 

Methods in jopt.csp.variable that return CspGenericLongExpr
 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
 CspGenericLongExpr CspGenericLongExpr.add(CspGenericLongConstant l)
          Returns an expression representing the sum of this expression with a static generic value
 CspGenericLongExpr CspGenericLongExpr.subtract(CspGenericLongConstant l)
          Returns an expression representing the difference of this expression with a static generic value
 CspGenericLongExpr CspGenericLongExpr.multiply(CspGenericLongConstant l)
          Returns an expression representing the product of this expression with a static generic value
 CspGenericLongExpr CspGenericLongExpr.divide(CspGenericLongConstant l)
          Returns an expression representing the quotient of this expression with a static generic value
 CspGenericLongExpr CspGenericIntExpr.add(CspGenericLongConstant l)
          Returns an expression representing the sum of this expression with a static generic value
 CspGenericLongExpr CspGenericIntExpr.subtract(CspGenericLongConstant l)
          Returns an expression representing the difference of this expression with a static generic value
 CspGenericLongExpr CspGenericIntExpr.multiply(CspGenericLongConstant l)
          Returns an expression representing the product of this expression with a static generic value
 CspGenericLongExpr CspGenericIntExpr.divide(CspGenericLongConstant l)
          Returns an expression representing the quotient of this expression with a static generic value
 

Methods in jopt.csp.variable with parameters of type CspGenericLongExpr
 CspConstraint CspMath.allDifferent(CspGenericLongExpr expr)
          Constrains all elements of a generic variable to be different values
 CspConstraint CspMath.globalCardinality(CspGenericLongExpr expr, java.lang.Number[] vals, int[] lb, int[] ub)
          Generates a constraint that will cause the number of times vals occurs in exprs to be at least lb and at most ub
 CspConstraint CspMath.globalCardCount(CspGenericLongExpr expr, java.lang.Number[] vals, CspIntExpr[] count)
          A constraint that will count the number of occurrence of certain values and store that number in the corresponding count int expression
 CspLongExpr CspMath.summation(CspGenericLongExpr x, CspGenericIndex[] indexRange, CspGenericIndexRestriction sourceIdxRestriction)
          Creates a variable equal to the summation of values in the generic variable.