fix
Fix.SCC
This module provides an implementation of Tarjan's algorithm, which computes the strongly connected components of a directed graph.
module Run (G : sig ... end) : sig ... end
The algorithm runs when Run(G) is called. The time complexity of the computation is O(V+E), where V is the number of vertices of the graph G and E is the number of its edges.
Run(G)
O(V+E)
V
G
E