pub trait GraphPlanSolver {
    fn search(&self, plangraph: &PlanGraph) -> Option<Solution>;
}

Required Methods

Searches a plangraph for a sequence of collection of actions that satisfy the goals

Implementors