pub trait ProvableSolutions: ExactSizeIterator {
    // Required method
    fn best_solution_distance(&self) -> Option<SolutionRange>;
}
Expand description

Solutions that can be proven if necessary.

Solutions are generated on demand during iteration.

Required Methods§

source

fn best_solution_distance(&self) -> Option<SolutionRange>

Best solution distance found, None in case there are no solutions

Implementors§