[][src]Trait graphplan::solver::GraphPlanSolver

pub trait GraphPlanSolver<ActionId: Hash + Ord + Clone + Debug> {
    fn search(
        &self,
        plangraph: &PlanGraph<ActionId>
    ) -> Option<Solution<ActionId>>; }

Required methods

fn search(&self, plangraph: &PlanGraph<ActionId>) -> Option<Solution<ActionId>>

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

Loading content...

Implementors

impl<ActionId: Ord + Clone + Hash + Debug> GraphPlanSolver<ActionId> for SimpleSolver[src]

Loading content...