sccmap
Find strongly connected components in Graphviz graphs
TLDR
Find strongly connected components
SYNOPSIS
sccmap [-o file] [-v] [-s] [options] files
DESCRIPTION
sccmap decomposes directed graphs into their strongly connected components (SCCs), where each SCC is a maximal set of nodes in which every node is reachable from every other node. It reads DOT format graphs and outputs each component as a separate subgraph.
With the -v flag, it reports statistics including the number and sizes of components, which is useful for understanding the structure of large directed graphs. Part of the Graphviz graph visualization package.
PARAMETERS
-o FILE
Output file.-v
Verbose statistics.-s
Silent mode.-S N
Minimum component size.-d
Output as subgraphs.
CAVEATS
Directed graphs only. DOT format input. Part of Graphviz package.
HISTORY
sccmap is part of Graphviz, the graph visualization software developed at AT&T Labs Research.
