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