pub trait ChildPhases<S, D>where
S: PlanningSolution,
D: Director<S>,{
// Required method
fn solve_all(&mut self, solver_scope: &mut SolverScope<'_, S, D>);
}Expand description
Trait for child phases that can solve a partition.
Implemented for tuples of phases via macro.