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>

§

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

source§

fn split_into_bcc(self) -> Self::Output

Implementors§