Dijkstra

Struct Dijkstra 

Source
pub struct Dijkstra<'a, N, E, A, H, S = DefaultHashBuilder>
where A: GraphProps, H: HyperGraph<N, E, A>,
{ /* private fields */ }
Expand description

Dijkstra’s shortest path algorithm for hypergraphs

Implementations§

Source§

impl<'a, N, E, A, H, S> Dijkstra<'a, N, E, A, H, S>
where A: GraphProps, H: HyperGraph<N, E, A>, S: BuildHasher, A::Ix: RawIndex,

Source

pub fn new(graph: &'a H) -> Self
where S: Default,

Create a new Dijkstra instance

Source

pub const fn graph(&self) -> &H

returns a reference to the graph

Source

pub const fn distances(&self) -> &HashMap<VertexId<A::Ix>, E, S>

returns a reference to the distances

Source

pub const fn distances_mut(&mut self) -> &mut HashMap<VertexId<A::Ix>, E, S>

returns a mutable reference to the distances

Source

pub const fn previous(&self) -> &HashMap<VertexId<A::Ix>, VertexId<A::Ix>, S>

returns a reference to the previous history

Source

pub const fn previous_mut( &mut self, ) -> &mut HashMap<VertexId<A::Ix>, VertexId<A::Ix>, S>

returns a mutable reference to the previous history

Source

pub const fn visited(&self) -> &VertexSet<A::Ix, S>

returns a reference to the visited vertices

Source

pub const fn visited_mut(&mut self) -> &mut VertexSet<A::Ix, S>

returns a mutable reference to the visited vertices

Source

pub fn set_distances( &mut self, distances: HashMap<VertexId<A::Ix>, E, S>, ) -> &mut Self

update the distances and returns a mutable reference to the instance

Source

pub fn set_previous( &mut self, previous: HashMap<VertexId<A::Ix>, VertexId<A::Ix>, S>, ) -> &mut Self

update the previous history and returns a mutable reference to the instance

Source

pub fn set_visited(&mut self, visited: VertexSet<A::Ix, S>) -> &mut Self

update the visited vertices and returns a mutable reference to the instance

Source

pub fn add_distance( &mut self, vertex: VertexId<A::Ix>, distance: E, ) -> &mut Self
where A::Ix: Eq + Hash,

add a new node to the distances

Source

pub fn add_previous( &mut self, vertex: VertexId<A::Ix>, previous: VertexId<A::Ix>, ) -> &mut Self
where A::Ix: Eq + Hash,

add a vertex to the previous history

Source

pub fn add_visited(&mut self, vertex: VertexId<A::Ix>) -> &mut Self
where A::Ix: Eq + Hash,

record a vertex as visited

Source

pub fn find_path( &mut self, start: VertexId<A::Ix>, dest: VertexId<A::Ix>, ) -> Result<<Self as PathFinder<A::Ix>>::Path>
where Self: PathFinder<A::Ix>,

Find the shortest path from start to goal

Source

pub fn search( &mut self, start: VertexId<A::Ix>, ) -> Result<<Self as Search<VertexId<A::Ix>>>::Output>
where Self: Search<VertexId<A::Ix>>,

search for a path starting from start to the vertex with the largest ID

Source

pub fn has_visited<Q>(&self, vertex: &Q) -> bool
where Q: ?Sized + Eq + Hash, A::Ix: Eq + Hash, VertexId<A::Ix>: Borrow<Q>,

returns true if the vertex is visited

Source

pub fn reset(&mut self) -> &mut Self

Reset the state for reuse

Trait Implementations§

Source§

impl<'a, N, E, A, H, S> PathFinder<<A as GraphProps>::Ix> for Dijkstra<'a, N, E, A, H, S>

Source§

type Path = Vec<IndexBase<<A as GraphProps>::Ix>>

Source§

fn find_path( &mut self, src: VertexId<A::Ix>, dest: VertexId<A::Ix>, ) -> Result<Self::Path>

returns a
Source§

fn reconstruct_path(&self, goal: VertexId<A::Ix>) -> Vec<VertexId<A::Ix>>

Source§

impl<'a, N, E, A, H> Search<IndexBase<<A as GraphProps>::Ix>> for Dijkstra<'a, N, E, A, H>

Source§

type Output = Vec<IndexBase<<A as GraphProps>::Ix>>

Source§

fn search(&mut self, start: VertexId<A::Ix>) -> Result<Self::Output>

begins a search of the graph, starting with the given index.
Source§

impl<'a, N, E, A, H, S> Traversal<IndexBase<<A as GraphProps>::Ix>> for Dijkstra<'a, N, E, A, H, S>
where A: GraphProps, H: HyperGraph<N, E, A>, S: BuildHasher, A::Ix: Eq + Hash,

Source§

type Store<I2> = HashSet<I2, S>

defines the associated container used to store visited vertices
Source§

fn has_visited(&self, vertex: &VertexId<A::Ix>) -> bool

Check if the search has visited a specific vertex
Source§

fn visited(&self) -> &Self::Store<VertexId<A::Ix>>

Get all vertices that have been visited during the search

Auto Trait Implementations§

§

impl<'a, N, E, A, H, S> Freeze for Dijkstra<'a, N, E, A, H, S>
where S: Freeze,

§

impl<'a, N, E, A, H, S> RefUnwindSafe for Dijkstra<'a, N, E, A, H, S>

§

impl<'a, N, E, A, H, S> Send for Dijkstra<'a, N, E, A, H, S>
where H: Sync, S: Send, N: Send, E: Send,

§

impl<'a, N, E, A, H, S> Sync for Dijkstra<'a, N, E, A, H, S>
where H: Sync, S: Sync, N: Sync, E: Sync,

§

impl<'a, N, E, A, H, S> Unpin for Dijkstra<'a, N, E, A, H, S>
where S: Unpin, N: Unpin, E: Unpin, <A as GraphProps>::Ix: Unpin,

§

impl<'a, N, E, A, H, S> UnwindSafe for Dijkstra<'a, N, E, A, H, S>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, Idx> GraphSearch<Idx> for T
where T: Search<Idx> + Traversal<Idx>,

Source§

fn __private__(&self) -> Seal

Source§

impl<K, S> Identity<K> for S
where S: Borrow<K>, K: Identifier,

Source§

type Item = S

Source§

fn get(&self) -> &<S as Identity<K>>::Item

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoWeight<T> for T

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more