Package org.ddolib
package org.ddolib
Main package of the framework. The structure is the following:
-
The
acspackage contains the framework you will be using to complete your Acs solver with MDD algorithm. -
The
astarpackage contains the framework you will be using to complete your As star (A*) solver with MDD algorithm. -
The
commonpackage contains interfaces and class that can be used for all kind of solvers (ddo, astar, acs) -
The
ddopackage composes the framework you will be using to complete your assignment on the Branch-and-Bound with MDD algorithm. -
The
examplespackage contains the examples on some classic problems on witch the different solver are applied on. -
The
modelingpackage contains interfaces and abstract classes to extend for implementing your optimization problem. -
The
utilpackage contains class of tools used in the different solvers. -
The
factorypackage provides a user-friendly api, e.g. factory for solvers with default values.