dogs 1.3.0

Discrete Optimization Global Search framework. Implements various search algorithms that can be found in combinatorial optimization or heuristic search.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
defines a decision tree structure. It allows to reduce the memory consumption and time to clone
information required to retrieve the solution.
*/
pub mod decision_tree;

/**
implements a lazy_clonable structure. While the object is not explicitely used, the cloned version
keeps a reference towards its "parent".
*/
pub mod lazy_clonable;

/**
Implmements a sparse set. Allows fast operations but consumes more memory than a standard bit-set.
*/
pub mod sparse_set;