Trait traitgraph::algo::dijkstra::DijkstraTargetMap[][src]

pub trait DijkstraTargetMap<Graph: GraphBase> {
    fn is_target(&self, node_index: Graph::NodeIndex) -> bool;
}
Expand description

A data structure that decides whether a given node index is a target of the current Dijkstra search.

Required methods

Returns true if the given node index is a target of the current Dijkstra search.

Implementations on Foreign Types

Implementors