- abs() - Method in interface javax.constraints.Var
-
Returns a new Var that is constrained to be the absolute value
of this variable.
- abs() - Method in interface javax.constraints.VarReal
-
Adds and returns a new VarReal that is constrained to be the absolute value of this variable.
- add(Var) - Method in interface javax.constraints.Problem
-
Adds a Var variable "var" to the problem, and returns the newly added Var.
- add(VarBool) - Method in interface javax.constraints.Problem
-
Adds a VarBool variable "var" to the problem, and returns the newly added VarBool.
- add(String, Var) - Method in interface javax.constraints.Problem
-
Gives the Var variable "var" a new name "name", adds it to the problem,
and returns the newly added Var.
- add(VarReal) - Method in interface javax.constraints.Problem
-
Adds a VarReal variable "var" to the problem, and returns the newly added VarReal.
- add(Constraint) - Method in interface javax.constraints.Problem
-
Adds a Constraint "constraint" to the problem, then returns the constraint.
- add(VarString) - Method in interface javax.constraints.Problem
-
- add(Var) - Method in class javax.constraints.ProblemDelegator
-
- add(VarBool) - Method in class javax.constraints.ProblemDelegator
-
- add(String, Var) - Method in class javax.constraints.ProblemDelegator
-
- add(VarReal) - Method in class javax.constraints.ProblemDelegator
-
- add(Constraint) - Method in class javax.constraints.ProblemDelegator
-
- add(VarString) - Method in class javax.constraints.ProblemDelegator
-
- addSearchStrategy(SearchStrategy) - Method in interface javax.constraints.Solver
-
This methods adds this strategy
to the end of the strategy execution lists.
- addSearchStrategy(Var[], VarSelector, ValueSelector) - Method in interface javax.constraints.Solver
-
This methods takes the default search strategy, resets its
vars, varSelector, and valueSelector, and then adds this strategy
to the end of the strategy execution lists.
- addSearchStrategy(Var[], VarSelectorType, ValueSelectorType) - Method in interface javax.constraints.Solver
-
This methods takes the default search strategy, resets its
vars, varSelector, and valueSelector, and then adds this strategy
to the end of the strategy execution lists.
- addSearchStrategy(Var[], VarSelector) - Method in interface javax.constraints.Solver
-
This methods takes the default search strategy, resets its
vars and varSelector, and adds this strategy to the end of the strategy execution lists.
- addSearchStrategy(Var[], VarSelectorType) - Method in interface javax.constraints.Solver
-
This methods takes the default search strategy, resets its
vars and varSelector, and adds this strategy to the end of the strategy execution lists.
- addSearchStrategy(Var[], ValueSelector) - Method in interface javax.constraints.Solver
-
This methods takes the default search strategy, resets its
vars and valueSelector, and adds this strategy to the end of the strategy execution lists.
- addSearchStrategy(Var[], ValueSelectorType) - Method in interface javax.constraints.Solver
-
This methods takes the default search strategy, resets its
vars and valueSelector, and adds this strategy to the end of the strategy execution lists.
- addSearchStrategy(Var[]) - Method in interface javax.constraints.Solver
-
This methods takes the default search strategy, resets its
vars, and adds this strategy to the end of the strategy execution lists.
- addStrategyLogVariables() - Method in interface javax.constraints.Solver
-
This methods adds the strategy getStrategyLogVariables()
to the end of the strategy execution lists.
- allDiff(Var[]) - Method in interface javax.constraints.Problem
-
This method create a new Constraint stating that all of the elements of
the array of variables "vars" must take different values from each other.
- allDiff(ArrayList<Var>) - Method in interface javax.constraints.Problem
-
This method create a new Constraint stating that all of the elements of
the list of variables "vars" must take different values from each other.
- allDiff(Var[]) - Method in class javax.constraints.ProblemDelegator
-
- allDiff(ArrayList<Var>) - Method in class javax.constraints.ProblemDelegator
-
- and(Constraint) - Method in interface javax.constraints.Constraint
-
Returns an "AND" Constraint.
- areThereProbabilityConstraints() - Method in interface javax.constraints.Problem
-
- areThereProbabilityConstraints() - Method in class javax.constraints.ProblemDelegator
-
- asBool() - Method in interface javax.constraints.Constraint
-
This method returns a Var variable that is equal 1 if the constraint
is satisfied and equals 0 if it is violated.
- asReal() - Method in interface javax.constraints.Var
-