Uses of Class
org.chocosolver.solver.Solution
-
Packages that use Solution Package Description org.chocosolver.solver A package devoted to Model and resolution tools.org.chocosolver.solver.objective org.chocosolver.solver.search org.chocosolver.solver.search.loop.lns.neighbors org.chocosolver.solver.search.loop.move org.chocosolver.solver.search.strategy.selectors.values -
-
Uses of Solution in org.chocosolver.solver
Methods in org.chocosolver.solver that return Solution Modifier and Type Method Description Solution
Solution. copySolution()
Solution
Solution. record()
Records the current solution of the solver clears all previous recordingsMethods in org.chocosolver.solver that return types with arguments of type Solution Modifier and Type Method Description Stream<Solution>
ParallelPortfolio. streamSolutions()
Attempts to find all solutions of the declared problem. -
Uses of Solution in org.chocosolver.solver.objective
Methods in org.chocosolver.solver.objective that return types with arguments of type Solution Modifier and Type Method Description List<Solution>
ParetoOptimizer. getParetoFront()
-
Uses of Solution in org.chocosolver.solver.search
Methods in org.chocosolver.solver.search that return Solution Modifier and Type Method Description default Solution
IResolutionHelper. findLexOptimalSolution(IntVar[] objectives, boolean maximize, Criterion... stop)
Attempts optimize the value of the objectives variable w.r.t. to an optimization criteria.default Solution
IResolutionHelper. findOptimalSolution(IntVar objective, boolean maximize, Criterion... stop)
Attempt to find the solution that optimizes the mono-objective problem defined by a unique objective variable and an optimization criteria.default Solution
IResolutionHelper. findSolution(Criterion... stop)
Attempts to find a solution of the declared satisfaction problem.Methods in org.chocosolver.solver.search that return types with arguments of type Solution Modifier and Type Method Description default List<Solution>
IResolutionHelper. findAllOptimalSolutions(IntVar objective, boolean maximize, Criterion... stop)
Attempt to find the solution that optimizes the mono-objective problem defined by a unique objective variable and an optimization criteria, then finds and stores all optimal solution.default List<Solution>
IResolutionHelper. findAllSolutions(Criterion... stop)
Attempts to find all solutions of the declared satisfaction problem.default List<Solution>
IResolutionHelper. findParetoFront(IntVar[] objectives, boolean maximize, Criterion... stop)
Attempts optimize the value of the objectives variable w.r.t. to an optimization criteria.default Stream<Solution>
IResolutionHelper. streamOptimalSolutions(IntVar objective, boolean maximize, Criterion... stop)
Attempt to find the solution that optimizes the mono-objective problem defined by a unique objective variable and an optimization criteria, then finds and stores all optimal solution.default Stream<Solution>
IResolutionHelper. streamSolutions(Criterion... stop)
Attempts to find all solutions of the declared problem.Method parameters in org.chocosolver.solver.search with type arguments of type Solution Modifier and Type Method Description default void
IResolutionHelper. eachSolutionWithMeasure(BiConsumer<Solution,IMeasures> cons, Criterion... stop)
-
Uses of Solution in org.chocosolver.solver.search.loop.lns.neighbors
Methods in org.chocosolver.solver.search.loop.lns.neighbors with parameters of type Solution Modifier and Type Method Description void
AdaptiveNeighborhood. loadFromSolution(Solution solution)
void
INeighbor. loadFromSolution(Solution solution)
Deprecated.void
Neighbor. loadFromSolution(Solution solution)
Load a solution and record itvoid
RandomNeighborhood. loadFromSolution(Solution solution)
void
SequenceNeighborhood. loadFromSolution(Solution solution)
-
Uses of Solution in org.chocosolver.solver.search.loop.move
Methods in org.chocosolver.solver.search.loop.move with parameters of type Solution Modifier and Type Method Description void
MoveLNS. loadFromSolution(Solution solution, Solver solver)
Give an initial solution to begin with if called before executing the solving process or erase the last recorded one otherwise. -
Uses of Solution in org.chocosolver.solver.search.strategy.selectors.values
Constructors in org.chocosolver.solver.search.strategy.selectors.values with parameters of type Solution Constructor Description IntDomainLast(Solution solution, IntValueSelector mainSelector)
Create a value selector that returns the value in the last solution.
-