Skip to content

Commit

Permalink
Minor doc cleanups to remove doc build warnings (#7048)
Browse files Browse the repository at this point in the history
* More removed refguide cleanups.

* Fix misformatted references in extendability docstring.

* Rm release_dev from releases autosummary.
  • Loading branch information
rossbar authored and jarrodmillman committed Oct 27, 2023
1 parent fc09bd2 commit c581756
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
3 changes: 0 additions & 3 deletions doc/reference/algorithms/clique.rst
Expand Up @@ -11,9 +11,6 @@ Clique
find_cliques_recursive
make_max_clique_graph
make_clique_bipartite
graph_clique_number
graph_number_of_cliques
node_clique_number
number_of_cliques
cliques_containing_node
max_weight_clique
1 change: 0 additions & 1 deletion doc/release/index.rst
Expand Up @@ -14,7 +14,6 @@ period.
.. toctree::
:maxdepth: 2

release_dev
release_3.2
release_3.1
release_3.0
Expand Down
6 changes: 3 additions & 3 deletions networkx/algorithms/bipartite/extendability.py
Expand Up @@ -43,7 +43,7 @@ def maximal_extendability(G):
is the graph obtained from G by directing the edges of M from V to U and the
edges that do not belong to M from U to V.
Lemma([1]_):
Lemma [1]_ :
Let M be a perfect matching of `G`. `G` is $k$-extendable if and only if its residual
graph $G_M$ is strongly connected and there are $k$ vertex-disjoint directed
paths between every vertex of U and every vertex of V.
Expand All @@ -59,9 +59,9 @@ def maximal_extendability(G):
References
----------
..[1] "A polynomial algorithm for the extendability problem in bipartite graphs",
.. [1] "A polynomial algorithm for the extendability problem in bipartite graphs",
J. Lakhal, L. Litzler, Information Processing Letters, 1998.
..[2] "On n-extendible graphs", M. D. Plummer, Discrete Mathematics, 31:201–210, 1980
.. [2] "On n-extendible graphs", M. D. Plummer, Discrete Mathematics, 31:201–210, 1980
https://doi.org/10.1016/0012-365X(80)90037-0
"""
Expand Down

0 comments on commit c581756

Please sign in to comment.