Uses of Class
org.ddolib.modeling.ExactModel
Packages that use ExactModel
Package
Description
This package contains solvers using DDO algorithm.
This package contains the interfaces and abstract classes that must be implemented as problem
specific classes to model a problem.It also contains default implementation.
-
Uses of ExactModel in org.ddolib.ddo.core.solver
Constructors in org.ddolib.ddo.core.solver with parameters of type ExactModelModifierConstructorDescriptionExactSolver(ExactModel<T> model) Creates a fully-configured ExactSolver instance. -
Uses of ExactModel in org.ddolib.modeling
Methods in org.ddolib.modeling that return ExactModelModifier and TypeMethodDescriptiondefault ExactModel<T> DdoModel.toExactModel()Convert this model into a model for the exact solver.Methods in org.ddolib.modeling with parameters of type ExactModelModifier and TypeMethodDescriptionstatic <T> SolutionSolvers.minimizeExact(ExactModel<T> model) Solves the given model using the Exact DDO algorithm.static <T> SolutionSolvers.minimizeExact(ExactModel<T> model, BiConsumer<int[], SearchStatistics> onSolution) Core method for solving an DDO model with solution callback.