yog/components
Types
Values
pub fn strongly_connected_components(
graph: model.Graph(n, e),
) -> List(List(Int))
Finds Strongly Connected Components (SCC) using Tarjan’s Algorithm. Returns a list of components, where each component is a list of NodeIds.