pub trait ComputeScc: GraphNode {
    // Required method
    fn compute_scc(&self) -> Vec<Self::NodeId>;
}
Expand description

A trait for a type that can compute its strongly-connected-component.

Required Methods§

source

fn compute_scc(&self) -> Vec<Self::NodeId>

Object Safety§

This trait is not object safe.

Implementors§