We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
min_edge_cover
1 parent fc67a54 commit 9fd0532Copy full SHA for 9fd0532
1 file changed
networkx/algorithms/covering.py
@@ -66,10 +66,10 @@ def min_edge_cover(G, matching_algorithm=None):
66
is bounded by the worst-case running time of the function
67
``matching_algorithm``.
68
69
- Minimum edge cover for `G` can also be found using the `min_edge_covering`
70
- function in :mod:`networkx.algorithms.bipartite.covering` which is
+ Minimum edge cover for `G` can also be found using
+ :func:`~networkx.algorithms.bipartite.covering.min_edge_covering` which is
71
simply this function with a default matching algorithm of
72
- :func:`~networkx.algorithms.bipartite.matching.hopcraft_karp_matching`
+ :func:`~networkx.algorithms.bipartite.matching.hopcroft_karp_matching`
73
"""
74
if len(G) == 0:
75
return set()
0 commit comments