Package org.ddolib


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