Struct swh_graph::views::Subgraph

source ·
pub struct Subgraph<G: SwhGraph, NodeFilter: Fn(usize) -> bool, ArcFilter: Fn(usize, usize) -> bool> {
    pub graph: G,
    pub node_filter: NodeFilter,
    pub arc_filter: ArcFilter,
}
Expand description

A view over SwhGraph and related traits, that filters out some nodes and arcs based on arbitrary closures.

Fields§

§graph: G§node_filter: NodeFilter§arc_filter: ArcFilter

Implementations§

source§

impl<G: SwhGraph, NodeFilter: Fn(usize) -> bool> Subgraph<G, NodeFilter, fn(_: usize, _: usize) -> bool>

source

pub fn new_with_node_filter( graph: G, node_filter: NodeFilter ) -> Subgraph<G, NodeFilter, fn(_: usize, _: usize) -> bool>

Shorthand for Subgraph { graph, node_filter, arc_filter: |_src, _dst| true }

source§

impl<G: SwhGraph, ArcFilter: Fn(usize, usize) -> bool> Subgraph<G, fn(_: usize) -> bool, ArcFilter>

source

pub fn new_with_arc_filter( graph: G, arc_filter: ArcFilter ) -> Subgraph<G, fn(_: usize) -> bool, ArcFilter>

Shorthand for Subgraph { graph, node_filter: |_node| true, arc_filter }

Trait Implementations§

source§

impl<G: SwhBackwardGraph, NodeFilter: Fn(usize) -> bool, ArcFilter: Fn(usize, usize) -> bool> SwhBackwardGraph for Subgraph<G, NodeFilter, ArcFilter>

§

type Predecessors<'succ> = FilteredPredecessors<'succ, <<G as SwhBackwardGraph>::Predecessors<'succ> as IntoIterator>::IntoIter, NodeFilter, ArcFilter> where Self: 'succ

source§

fn predecessors(&self, node_id: NodeId) -> Self::Predecessors<'_>

Return an IntoIterator over the predecessors of a node.
source§

fn indegree(&self, node_id: NodeId) -> usize

Return the number of predecessors of a node.
source§

impl<G: SwhForwardGraph, NodeFilter: Fn(usize) -> bool, ArcFilter: Fn(usize, usize) -> bool> SwhForwardGraph for Subgraph<G, NodeFilter, ArcFilter>

§

type Successors<'succ> = FilteredSuccessors<'succ, <<G as SwhForwardGraph>::Successors<'succ> as IntoIterator>::IntoIter, NodeFilter, ArcFilter> where Self: 'succ

source§

fn successors(&self, node_id: NodeId) -> Self::Successors<'_>

Return an IntoIterator over the successors of a node.
source§

fn outdegree(&self, node_id: NodeId) -> usize

Return the number of successors of a node.
source§

impl<G: SwhGraph, NodeFilter: Fn(usize) -> bool, ArcFilter: Fn(usize, usize) -> bool> SwhGraph for Subgraph<G, NodeFilter, ArcFilter>

source§

fn path(&self) -> &Path

Return the base path of the graph
source§

fn is_transposed(&self) -> bool

Returns whether the graph is in the ori->snp->rel,rev->dir->cnt direction (with a few dir->rev arcs)
source§

fn num_nodes(&self) -> usize

Return the number of nodes in the graph.
source§

fn has_node(&self, node_id: NodeId) -> bool

Returns whether the given node id exists in the graph Read more
source§

fn num_arcs(&self) -> u64

Return the number of arcs in the graph.
source§

fn has_arc(&self, src_node_id: NodeId, dst_node_id: NodeId) -> bool

Return whether there is an arc going from src_node_id to dst_node_id.
source§

impl<G: SwhGraphWithProperties, NodeFilter: Fn(usize) -> bool, ArcFilter: Fn(usize, usize) -> bool> SwhGraphWithProperties for Subgraph<G, NodeFilter, ArcFilter>

source§

impl<G: SwhLabelledBackwardGraph, NodeFilter: Fn(usize) -> bool, ArcFilter: Fn(usize, usize) -> bool> SwhLabelledBackwardGraph for Subgraph<G, NodeFilter, ArcFilter>

§

type LabelledArcs<'arc> = <G as SwhLabelledBackwardGraph>::LabelledArcs<'arc> where Self: 'arc

§

type LabelledPredecessors<'node> = FilteredLabelledPredecessors<'node, <Subgraph<G, NodeFilter, ArcFilter> as SwhLabelledBackwardGraph>::LabelledArcs<'node>, <<G as SwhLabelledBackwardGraph>::LabelledPredecessors<'node> as IntoIterator>::IntoIter, NodeFilter, ArcFilter> where Self: 'node

source§

fn labelled_predecessors( &self, node_id: NodeId ) -> Self::LabelledPredecessors<'_>

Return an IntoIterator over the successors of a node.
source§

impl<G: SwhLabelledForwardGraph, NodeFilter: Fn(usize) -> bool, ArcFilter: Fn(usize, usize) -> bool> SwhLabelledForwardGraph for Subgraph<G, NodeFilter, ArcFilter>

§

type LabelledArcs<'arc> = <G as SwhLabelledForwardGraph>::LabelledArcs<'arc> where Self: 'arc

§

type LabelledSuccessors<'node> = FilteredLabelledSuccessors<'node, <Subgraph<G, NodeFilter, ArcFilter> as SwhLabelledForwardGraph>::LabelledArcs<'node>, <<G as SwhLabelledForwardGraph>::LabelledSuccessors<'node> as IntoIterator>::IntoIter, NodeFilter, ArcFilter> where Self: 'node

source§

fn labelled_successors(&self, node_id: NodeId) -> Self::LabelledSuccessors<'_>

Return an IntoIterator over the successors of a node.

Auto Trait Implementations§

§

impl<G, NodeFilter, ArcFilter> RefUnwindSafe for Subgraph<G, NodeFilter, ArcFilter>where ArcFilter: RefUnwindSafe, G: RefUnwindSafe, NodeFilter: RefUnwindSafe,

§

impl<G, NodeFilter, ArcFilter> Send for Subgraph<G, NodeFilter, ArcFilter>where ArcFilter: Send, G: Send, NodeFilter: Send,

§

impl<G, NodeFilter, ArcFilter> Sync for Subgraph<G, NodeFilter, ArcFilter>where ArcFilter: Sync, G: Sync, NodeFilter: Sync,

§

impl<G, NodeFilter, ArcFilter> Unpin for Subgraph<G, NodeFilter, ArcFilter>where ArcFilter: Unpin, G: Unpin, NodeFilter: Unpin,

§

impl<G, NodeFilter, ArcFilter> UnwindSafe for Subgraph<G, NodeFilter, ArcFilter>where ArcFilter: UnwindSafe, G: UnwindSafe, NodeFilter: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<T> CastableFrom<T> for T

§

fn cast_from(value: T) -> T

Call Self as W
§

impl<T, U> CastableInto<U> for Twhere U: CastableFrom<T>,

§

fn cast(self) -> U

Call W::cast_from(self)
§

impl<T> DowncastableFrom<T> for T

§

fn downcast_from(value: T) -> T

Truncate the current UnsignedInt to a possibly smaller size
§

impl<T, U> DowncastableInto<U> for Twhere U: DowncastableFrom<T>,

§

fn downcast(self) -> U

Call W::downcast_from(self)
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, W> HasTypeWitness<W> for Twhere W: MakeTypeWitness<Arg = T>, T: ?Sized,

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

impl<T> Identity for Twhere T: ?Sized,

§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
source§

impl<T, U> Into<U> for Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> Splat<T> for T

§

fn splat(value: T) -> T

§

impl<T> To<T> for T

§

fn to(self) -> T

source§

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

§

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 Twhere U: TryFrom<T>,

§

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.
§

impl<T> UpcastableFrom<T> for T

§

fn upcast_from(value: T) -> T

Extend the current UnsignedInt to a possibly bigger size.
§

impl<T, U> UpcastableInto<U> for Twhere U: UpcastableFrom<T>,

§

fn upcast(self) -> U

Call W::upcast_from(self)
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> Allocation for Twhere T: RefUnwindSafe + Send + Sync,