DepthFirstTraversal

Struct DepthFirstTraversal 

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

Depth-First Traversal algorithm for hypergraphs

Implementations§

Source§

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

Source

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

Create a new DepthFirstTraversal instance

Source

pub const fn stack(&self) -> &Vec<VertexId<A::Ix>>

returns an immutable reference to the stack

Source

pub const fn stack_mut(&mut self) -> &mut Vec<VertexId<A::Ix>>

returns a mutable reference to the stack

Source

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

returns an immutable 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 has_visited<Q>(&self, vertex: &Q) -> bool
where A::Ix: Eq + Hash, Q: ?Sized + Eq + Hash, VertexId<A::Ix>: Borrow<Q>,

returns true if the vertex has been visited

Source

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

reset the traversal state

Source

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

a convience method to perform a search

Trait Implementations§

Source§

impl<'a, N, E, A, H, S> Search<IndexBase<<A as GraphProps>::Ix>> for DepthFirstTraversal<'a, N, E, A, H, S>
where A: GraphProps, H: HyperGraph<N, E, A>, S: BuildHasher, A::Ix: HyperIndex, for<'b> &'b <H::Edge<E> as RawLayout>::Store: IntoIterator<Item = &'b VertexId<A::Ix>>,

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 DepthFirstTraversal<'a, N, E, A, H, S>
where A: GraphProps, H: HyperGraph<N, E, A>, S: BuildHasher, A::Ix: HashIndex,

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 DepthFirstTraversal<'a, N, E, A, H, S>
where S: Freeze,

§

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

§

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

§

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

§

impl<'a, N, E, A, H, S> Unpin for DepthFirstTraversal<'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 DepthFirstTraversal<'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