diff options
author | Jarrod Millman <jarrod.millman@gmail.com> | 2017-07-17 17:06:33 -0700 |
---|---|---|
committer | Dan Schult <dschult@colgate.edu> | 2017-07-17 20:06:33 -0400 |
commit | 65115bc9e15760ec4925796ae48b75d4c8b61b9e (patch) | |
tree | 6acf3dede4226c4a31fdc8ad29f8a73c7ff9627f /doc/release/api_1.8.rst | |
parent | 24e7dd35be46738c96fbc5f83ee9d8edca49750f (diff) | |
download | networkx-65115bc9e15760ec4925796ae48b75d4c8b61b9e.tar.gz |
Flatten doc hierarchy (#2520)
* Silence some sphinx warnings
* Update structure of documentation
See https://github.com/networkx/networkx/pull/2054
Diffstat (limited to 'doc/release/api_1.8.rst')
-rw-r--r-- | doc/release/api_1.8.rst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/release/api_1.8.rst b/doc/release/api_1.8.rst new file mode 100644 index 00000000..b7bcb772 --- /dev/null +++ b/doc/release/api_1.8.rst @@ -0,0 +1,16 @@ +********************************* +Version 1.8 notes and API changes +********************************* + +This page reflects API changes from networkx-1.7 to networkx-1.8. + +Please send comments and questions to the networkx-discuss mailing list: +http://groups.google.com/group/networkx-discuss . + +* Laplacian functions now all return matrices. To get a numpy array from a matrix use L = nx.laplacian_matrix(G).A + +* is_directed_acyclic_graph() now returns false on undirected graphs (instead of raising exception) + +* cycles returned from simple_cycles() do not include repeated last node + + |