diff options
| author | Dan Schult <dschult@colgate.edu> | 2022-02-01 14:57:21 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-01 11:57:21 -0800 |
| commit | 17fa9942568bfca34d4a68f8d93c538014f69389 (patch) | |
| tree | 574f76e4e3ed6d0c56c4b6b8df1bcf89b9abd7b8 /doc/reference | |
| parent | 290ebce534b84f9db20ec58b98cbb170e65a0ba1 (diff) | |
| download | networkx-17fa9942568bfca34d4a68f8d93c538014f69389.tar.gz | |
Fix functions appearing in variables `__all__` but not in docs for NX2.7 (#5289)
* Adjust functions appearing in `__all__` but not in docs
* clean up coloring: merge two modules make interchange private
* fix duplicate name. Probably should be changed
* fix "see also" doc of recursive_simple_cycles
* Rm internal uses of deprecated .
* Fixup warnings filters regex.
* clean up a bit more, make Node & AdjList private classes
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
Co-authored-by: Mridul Seth <seth.mridul@gmail.com>
Diffstat (limited to 'doc/reference')
| -rw-r--r-- | doc/reference/algorithms/clique.rst | 1 | ||||
| -rw-r--r-- | doc/reference/algorithms/cycles.rst | 1 | ||||
| -rw-r--r-- | doc/reference/algorithms/triads.rst | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/doc/reference/algorithms/clique.rst b/doc/reference/algorithms/clique.rst index 4324c3c6..39193049 100644 --- a/doc/reference/algorithms/clique.rst +++ b/doc/reference/algorithms/clique.rst @@ -8,6 +8,7 @@ Clique enumerate_all_cliques find_cliques + find_cliques_recursive make_max_clique_graph make_clique_bipartite graph_clique_number diff --git a/doc/reference/algorithms/cycles.rst b/doc/reference/algorithms/cycles.rst index 0a9437a5..94cf3f8d 100644 --- a/doc/reference/algorithms/cycles.rst +++ b/doc/reference/algorithms/cycles.rst @@ -8,5 +8,6 @@ Cycles cycle_basis simple_cycles + recursive_simple_cycles find_cycle minimum_cycle_basis diff --git a/doc/reference/algorithms/triads.rst b/doc/reference/algorithms/triads.rst index 90885a72..17f2991b 100644 --- a/doc/reference/algorithms/triads.rst +++ b/doc/reference/algorithms/triads.rst @@ -10,5 +10,6 @@ Triads random_triad triads_by_type triad_type + is_triad all_triads all_triplets |
