Test directed graph for weak connectivity.
A directed graph is weakly connected if, and only if, the graph is connected when the direction of the edge between nodes is ignored.
Parameters: | G : NetworkX Graph
|
---|---|
Returns: | connected : bool
|
See also
is_strongly_connected, is_semiconnected, is_connected
Notes
For directed graphs only.