Function astar::astar [] [src]

pub fn astar<S: SearchProblem>(
    s: &S,
    start: S::Node
) -> Option<(VecDeque<(S::Node, S::Cost)>, S::Cost)> where
    S::Node: Clone