networkx.algorithms.hybrid.is_kl_connected¶
-
is_kl_connected
(G, k, l, low_memory=False)[source]¶ Returns True if and only if
G
is locally(k, l)
-connected.A graph is locally
(k, l)
-connected if for each edge(u, v)
in the graph there are at leastl
edge-disjoint paths of length at mostk
joiningu
tov
.Parameters: - G (NetworkX graph) – The graph to test for local
(k, l)
-connectedness. - k (integer) – The maximum length of paths to consider. A higher number means a looser connectivity requirement.
- l (integer) – The number of edge-disjoint paths. A higher number means a stricter connectivity requirement.
- low_memory (bool) – If this is True, this function uses an algorithm that uses slightly more time but less memory.
Returns: Whether the graph is locally
(k, l)
-connected subgraph.Return type: See also
References
- G (NetworkX graph) – The graph to test for local