Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ Summary of changes by function

* Output columns standardized to ``(node, color)``

* pgr_breadthFirstSearch

* Standardizing output columns to ``(seq, depth, start_vid, pred, node, edge, cost, agg_cost)``

* pgr_contraction

.. Breaking change
Expand All @@ -63,6 +67,10 @@ Summary of changes by function

* Output columns standardized to ``(seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)``

* pgr_depthFirstSearch

* Standardizing output columns to ``(seq, depth, start_vid, pred, node, edge, cost, agg_cost)``

* pgr_dijkstra

* Combinations signature promoted to official.
Expand Down Expand Up @@ -282,6 +290,13 @@ Standardize output columns of functions with different output columns within ove
* [#2927](https://github.com/pgRouting/pgrouting/issues/2927)
pgr_sequentialVertexColoring

**Standardized to ``(seq, depth, start_vid, pred, node, edge, cost, agg_cost)``**

* [#2931](https://github.com/pgRouting/pgrouting/issues/2931)
pgr_breadthFirstSearch
* [#2931](https://github.com/pgRouting/pgrouting/issues/2931)
pgr_depthFirstSearch

Removal of SQL deprecated signatures

* [#2798](https://github.com/pgRouting/pgrouting/issues/2798):
Expand Down
1 change: 1 addition & 0 deletions doc/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ div.note {
div.warning {
background-color: white;
background-image: none;
border: 2px solid orange;
}

div.signatures {
Expand Down
7 changes: 0 additions & 7 deletions doc/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -354,11 +354,6 @@ rst_epilog="""
.. |ksp-result| replace:: ``(seq, path_id, path_seq, node, edge, cost, agg_cost)``
.. |tsp-result| replace:: ``(seq, node, cost, agg_cost)``
.. |nksp-result| replace:: ``(seq, path_id, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)``
.. |old-generic-result| replace:: ``(seq, path_seq, [start_vid], [end_vid], node, edge, cost, agg_cost)``
.. |result-1-1| replace:: ``(seq, path_seq, node, edge, cost, agg_cost)``
.. |result-1-m| replace:: ``(seq, path_seq, end_vid, node, edge, cost, agg_cost)``
.. |result-m-1| replace:: ``(seq, path_seq, start_vid, node, edge, cost, agg_cost)``
.. |result-bfs| replace:: ``(seq, depth, start_vid, node, edge, cost, agg_cost)``
.. |result-spantree| replace:: ``(seq, depth, start_vid, pred, node, edge, cost, agg_cost)``
.. |result-mst| replace:: ``(edge, cost)``
.. |result-generic-no-seq| replace:: ``(seq, [start_vid], node, edge, cost, agg_cost)``
Expand All @@ -382,8 +377,6 @@ rst_epilog="""
.. |result-contract| replace:: ``(type, id, contracted_vertices, source, target, cost)``
.. |result-contraction-hierarchies| replace:: ``(type, id, contracted_vertices, source, target, cost, metric, vertex_order)``
.. |result-idom| replace:: ``(seq, vertex_id, idom)``
.. |result-dij-dd| replace:: ``(seq, [from_v,] node, edge, cost, agg_cost)``
.. |result-dij-dd-m| replace:: ``(seq, from_v, node, edge, cost, agg_cost)``
.. |result-linegf| replace:: ``(seq, source, target, cost, edge)``
.. |result-lineg| replace:: ``(seq, source, target, cost, reverse_cost)``
.. |result-flow| replace:: ``(seq, edge, start_vid, end_vid, flow, residual_capacity)``
Expand Down
Loading