strongly_connected_components_recursive
condensation
Enter search terms or a module, class or function name.
Return nodes in strongly connected components of graph.
G : NetworkX Graph
An directed graph.
comp : list of lists
A list of nodes for each component of G. The list is ordered from largest connected component to smallest.
See also
connected_components
Notes
Uses Kosaraju’s algorithm.