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
/**
defines a search space decorator trait.
A search space decorator allows 
*/
pub trait SearchSpaceDecorator<S> {
    /** gets the underlying search space */
    fn unwrap(&self) -> &S;
}