Function ordered_solve

Source
pub fn ordered_solve<Node, OrderedCandidateT>(initial: Node) -> Option<Node>
where Node: Subproblem + 'static, OrderedCandidateT: OrderedCandidate<Node = Node>,
Expand description

Solves the optimization problem specified by initial.

Use this function to walk the subproblem tree in a custom order, determined by the OrderedCandidateT generic type parameter.

If you want one of the default orders, use the solve function instead.