Trait traitgraph_algo::dijkstra::DijkstraWeight
source · [−]pub trait DijkstraWeight: Ord + Add<Output = Self> + Sized + Clone {
fn infinity() -> Self;
fn zero() -> Self;
}
Expand description
A weight-type usable in Dijkstra’s algorithm.