Changes between Version 80 and Version 81 of Ticket #26640
- Timestamp:
- 09/11/19 16:04:10 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26640 – Description
v80 v81 5 5 - #22349 Deprecate sorting of methods `.vertices()` and `.edges()` 6 6 - direct comparison of vertex labels (e.g., in method `iterator_edges` of `base/sparse_graph.pyx`) 7 - methods using matrices: `adjacency_matrix`, `distance_matrix`, etc. For all these methods, we can now give as input an ordering of the vertices that will be used to order rows and columns. Currently, we use `.vertices()` by default. If we switch to `list(G)` by default, we have to check that it's not breaking algorithms using these matrices.7 - methods using matrices: `adjacency_matrix`, `distance_matrix`, etc. For all these methods, we can now give as input an ordering of the vertices (and edges) that will be used to order rows and columns. Currently, we use `.vertices()` and `.edges()` by default. If we switch to `list(G)` by default, we have to check that it's not breaking algorithms using these matrices. 8 8 9 9 … … 13 13 '''Needs review''': 14 14 - #27408 Edge view for graphs -- introduce deprecation warning for `sort=None` as the plan is to set `sort=False` by default. 15 - #2 8371 py3: errors with optional package CSDP15 - #27513 Allow custom order for edges as well as vertices for incidence matrix 16 16 17 17 … … 110 110 - #27948 py3: fix doctests with optional package plantri 111 111 - #28108 py3: ValueError in graph_generators doctests with plantri optional package (follow up of #27948) 112 - #28371 py3: errors with optional package CSDP 112 113 113 114 … … 116 117 With #27628, #27811, #27948, #28108 and #28371 all failing doctests of the optional packages used in the graph module are fixed: benzene, bliss, buckygen, csdp, dot2tex and graphviz, gap_packages, igraph and python_igraph, mcqd, plantri, tdlib 117 118 118