diff options
author | KatolaZ <katolaz@freaknet.org> | 2017-09-27 15:06:31 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2017-09-27 15:06:31 +0100 |
commit | 3aee2fd43e3059a699af2b63c6f2395e5a55e515 (patch) | |
tree | 58c95505a0906ed9cfa694f9dbd319403fd8f01d /doc/largest_component.md |
First commit on github -- NetBunch 1.0
Diffstat (limited to 'doc/largest_component.md')
-rw-r--r-- | doc/largest_component.md | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/largest_component.md b/doc/largest_component.md new file mode 100644 index 0000000..5c5b5d6 --- /dev/null +++ b/doc/largest_component.md @@ -0,0 +1,47 @@ +largest_component(1) -- Find largest connected component of a graph +====== + +## SYNOPSIS + +`largest_component` <graph_in> + +## DESCRIPTION + +`largest_component` computes the largest connected component of +<graph_in>, and prints on STDOUT the corresponding edge list. + +## PARAMETERS + +* <graph_in>: + undirected input graph (edge list). If it is equal to `-` (dash), + read the edge list from STDIN. + + +## OUTPUT + +The program prints on STDOUT the edge list of the largest connected +component of <graph_in>, in the format: + + i_1 j_1 + i_2 j_2 + .... + + +## SEE ALSO + +components(1), node_components(1), strong_conn(1) + +## REFERENCES + +* V\. Latora, V. Nicosia, G. Russo, "Complex Networks: Principles, + Methods and Applications", Chapter 6, Cambridge University Press + (2017) + +* V\. Latora, V. Nicosia, G. Russo, "Complex Networks: Principles, + Methods and Applications", Appendix 8, Cambridge University Press + (2017) + + +## AUTHORS + +(c) Vincenzo 'KatolaZ' Nicosia 2009-2017 `<v.nicosia@qmul.ac.uk>`. |