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

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.