pub trait ComputeSccwhere
Self: 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§
fn compute_scc(&self) -> Vec<Self::NodeId>
Object Safety§
This trait is not object safe.