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.
pub trait ComputeSccwhere
Self: GraphNode,{
// Required method
fn compute_scc(&self) -> Vec<Self::NodeId>;
}A trait for a type that can compute its strongly-connected-component.