pub fn solve<Node: Subproblem + 'static>(
initial: Node,
order: SearchOrder,
) -> Option<Node>Expand description
Solves the optimization problem specified by initial.
Walks the subproblem tree in one of the default orders, as determined
by order. To walk the tree in a custom order, use the ordered_solve
function instead.