- findAllSolutions() - Method in interface javax.constraints.Solver
 
- 
This method attempts to find all solutions for the Problem.
 
- findOptimalSolution(Objective, Var, OptimizationStrategy) - Method in interface javax.constraints.Solver
 
- 
This method attempts to find the solution that minimizes/maximizes the objective variable.
 
- findOptimalSolution(Objective, VarReal, OptimizationStrategy) - Method in interface javax.constraints.Solver
 
-  
 
- findOptimalSolution(Objective, Var) - Method in interface javax.constraints.Solver
 
- 
This method is equivalent to 
 findOptimalSolution(Objective.MINIMIZE,objectiveVar,OptimizationStrategy.NATIVE)
 It is usually overridden by an implementation
 
- findOptimalSolution(Objective, VarReal) - Method in interface javax.constraints.Solver
 
- 
This method is equivalent to 
 findOptimalSolution(Objective.MINIMIZE,objectiveVar,OptimizationStrategy.NATIVE)
 It is usually overridden by an implementation
 
- findOptimalSolution(Var) - Method in interface javax.constraints.Solver
 
- 
This method is equivalent to findOptimalSolution(Objective.MINIMIZE,objectiveVar)
 
- findOptimalSolution(VarReal) - Method in interface javax.constraints.Solver
 
- 
This method is equivalent to findOptimalSolution(Objective.MINIMIZE,objectiveVar)
 
- findSolution(ProblemState) - Method in interface javax.constraints.Solver
 
- 
This method attempts to find a solution of the problem, for which the solver was defined.
 
- findSolution() - Method in interface javax.constraints.Solver
 
- 
This method is equivalent to findSolution(DO_NOT_RESTORE);
 It means that the problem state will always be restored even when a solution is found.
 
- flat() - Method in interface javax.constraints.VarMatrix
 
-