summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDan Schult <dschult@colgate.edu>2018-07-30 11:46:57 -0400
committerGitHub <noreply@github.com>2018-07-30 11:46:57 -0400
commit8a8f8c26119688786b24e2ebdab4eabfb4e6057c (patch)
tree3072e31120995b220ae364d2d4b2c977bed46da4 /doc
parent1a52196699668ec5531711590621b0d4821e57ae (diff)
downloadnetworkx-8a8f8c26119688786b24e2ebdab4eabfb4e6057c.tar.gz
bellman_ford now uses same pred dict sentinal value as dijkstra functions. (#3095)
An empty list is the pred value for any source nodes.
Diffstat (limited to 'doc')
-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 b2a31152..10b6c360 100644
--- a/doc/release/release_dev.rst
+++ b/doc/release/release_dev.rst
@@ -74,6 +74,10 @@ H.update(e), and H.update(nodes=n) are also allowed.
First argument is a graph if it has `edges` and `nodes` attributes.
Otherwise the first argument is treated as a list of edges.
+The bellman_ford predecessor dicts had sentinal value `[None]` for
+source nodes. That has been changed so source nodes have pred value '[]'
+
+
Deprecations
------------