SplitIntoBcc

Trait SplitIntoBcc 

Source
pub trait SplitIntoBcc {
    type Output;

    // Required method
    fn split_into_bcc(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn split_into_bcc(self) -> Self::Output

Split up a graph into its biconnected components

Implementations on Foreign Types§

Source§

impl<N: Clone, E, Ix: IndexType> SplitIntoBcc for UnGraph<N, E, Ix>

Source§

type Output = Vec<Graph<N, E, Undirected, Ix>>

Source§

fn split_into_bcc(self) -> Self::Output

Implementors§