File: component.rst

package info (click to toggle)
networkx 2.8.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,376 kB
  • sloc: python: 89,873; xml: 544; javascript: 120; makefile: 117; sh: 30
file content (61 lines) | stat: -rw-r--r-- 1,158 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
**********
Components
**********
.. automodule:: networkx.algorithms.components

Connectivity
------------
.. autosummary::
   :toctree: generated/

   is_connected
   number_connected_components
   connected_components
   node_connected_component

Strong connectivity
-------------------
.. autosummary::
   :toctree: generated/

   is_strongly_connected
   number_strongly_connected_components
   strongly_connected_components
   strongly_connected_components_recursive
   kosaraju_strongly_connected_components
   condensation

Weak connectivity
-----------------
.. autosummary::
   :toctree: generated/

   is_weakly_connected
   number_weakly_connected_components
   weakly_connected_components

Attracting components
---------------------
.. autosummary::
   :toctree: generated/

   is_attracting_component
   number_attracting_components
   attracting_components

Biconnected components
----------------------
.. autosummary::
   :toctree: generated/

   is_biconnected
   biconnected_components
   biconnected_component_edges
   articulation_points

Semiconnectedness
-----------------
.. autosummary::
   :toctree: generated/

   is_semiconnected