dogs 1.3.0

Discrete Optimization Global Search framework. Implements various search algorithms that can be found in combinatorial optimization or heuristic search.
Documentation
/** helper structures for the search strategies */
pub mod helper;

/** beam search search */
pub mod beam_search;

/** Depth First Search */
pub mod depth_first;

/** Best First Search */
pub mod best_first;

/** Beam Search with node pareto dominance */
pub mod beam_search_dom;

/** Beam Search using partial neighborhood expansion */
pub mod beam_search_pe;

/** Greedy algorithm using partial neighborhood expansion */
pub mod greedy_pe;