pub enum DijkstraExhaustiveness {
Complete,
PartialNodeWeights,
PartialHeap,
}
Expand description
The exhaustiveness of an execution of Dijkstra’s algorithm. This can be complete, or partial because of reaching performance limits.
Note that the max_weight
parameter is not a performance limit, but a limit on the search space.
Variants
Complete
The search exhausted the search space.
PartialNodeWeights
The search was aborted early because the node weight data structure grew too large.
PartialHeap
The search was aborted early because the heap grew too large.
Auto Trait Implementations
impl RefUnwindSafe for DijkstraExhaustiveness
impl Send for DijkstraExhaustiveness
impl Sync for DijkstraExhaustiveness
impl Unpin for DijkstraExhaustiveness
impl UnwindSafe for DijkstraExhaustiveness
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more