summaryrefslogtreecommitdiff
path: root/doc/release
diff options
context:
space:
mode:
authorDan Schult <dschult@colgate.edu>2022-04-01 15:35:43 -0400
committerGitHub <noreply@github.com>2022-04-01 12:35:43 -0700
commitc3e1e7f4c6a4edb968494cd4775574ad26f2a96b (patch)
tree7effbaa0cbb0bd6150046d8da76f9b9ed39689eb /doc/release
parentc39511522b272bf65b6a415169cd48d1bf3ff5c1 (diff)
downloadnetworkx-c3e1e7f4c6a4edb968494cd4775574ad26f2a96b.tar.gz
Fix min_weight_matching to convert edge weights without reciprocal (#5394)
* Add test and then fix code and docs * Correct and improve docs. Change 1e-6 to 1 to maintain integers. Include argument in docstring for why adding the 1 doesn't impact the min
Diffstat (limited to 'doc/release')
-rw-r--r--doc/release/release_dev.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/release/release_dev.rst b/doc/release/release_dev.rst
index 53b5562b..dc624067 100644
--- a/doc/release/release_dev.rst
+++ b/doc/release/release_dev.rst
@@ -46,6 +46,10 @@ Improvements
API Changes
-----------
+- [`#5394 <https://github.com/networkx/networkx/pull/5394>`_]
+ The function ``min_weight_matching`` no longer acts upon the parameter ``maxcardinality``
+ because setting it to False would result in the min_weight_matching being no edges
+ at all. The only resonable option is True. The parameter will be removed completely in v3.0.
Deprecations
------------