Skip to content

Commit 7900b0c

Browse files
committed
Adding missing information on NEWS
1 parent 005e16e commit 7900b0c

File tree

7 files changed

+49
-73
lines changed

7 files changed

+49
-73
lines changed

NEWS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ Summary of changes by function
5353

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

56+
* pgr_boykovKolmogorov
57+
58+
* Combinations signature promoted to official.
59+
5660
* pgr_breadthFirstSearch
5761

5862
* Standardizing output columns to ``(seq, depth, start_vid, pred, node, edge, cost, agg_cost)``
@@ -87,6 +91,10 @@ Summary of changes by function
8791

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

94+
* pgr_edmondsKarp
95+
96+
* Combinations signature promoted to official.
97+
9098
* pgr_edwardMoore
9199

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

doc/categories/drivingDistance-category.rst

Lines changed: 3 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -87,53 +87,9 @@ Edges SQL
8787
Result columns
8888
...............................................................................
8989

90-
.. spantree-result-columns-start
91-
92-
Returns set of |result-spantree|
93-
94-
.. list-table::
95-
:width: 81
96-
:widths: auto
97-
:header-rows: 1
98-
99-
* - Parameter
100-
- Type
101-
- Description
102-
* - ``seq``
103-
- ``BIGINT``
104-
- Sequential value starting from :math:`1`.
105-
* - ``depth``
106-
- ``BIGINT``
107-
- Depth of the ``node``.
108-
109-
- :math:`0` when ``node`` = ``start_vid``.
110-
- :math:`depth-1` is the depth of ``pred``
111-
112-
* - ``start_vid``
113-
- ``BIGINT``
114-
- Identifier of the root vertex.
115-
* - ``pred``
116-
- ``BIGINT``
117-
- Predecessor of ``node``.
118-
119-
- When ``node`` = ``start_vid`` then has the value ``node``.
120-
* - ``node``
121-
- ``BIGINT``
122-
- Identifier of ``node`` reached using ``edge``.
123-
* - ``edge``
124-
- ``BIGINT``
125-
- Identifier of the ``edge`` used to arrive from ``pred`` to ``node``.
126-
127-
- :math:`-1` when ``node`` = ``start_vid``.
128-
129-
* - ``cost``
130-
- ``FLOAT``
131-
- Cost to traverse ``edge``.
132-
* - ``agg_cost``
133-
- ``FLOAT``
134-
- Aggregate cost from ``start_vid`` to ``node``.
135-
136-
.. spantree-result-columns-end
90+
.. include:: pgRouting-concepts.rst
91+
:start-after: spantree-result-columns-start
92+
:end-before: spantree-result-columns-end
13793

13894
See Also
13995
-------------------------------------------------------------------------------

doc/max_flow/pgr_boykovKolmogorov.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,28 @@ the flow from the sources to the targets using Boykov Kolmogorov algorithm.
2121

2222
.. Rubric:: Availability
2323

24-
* Version 4.0.0
24+
.. rubric:: Version 4.0.0
2525

26-
* Combinations signature promoted to official.
26+
* Combinations signature promoted to official.
2727

28-
* Version 3.2.0
28+
.. rubric:: Version 3.2.0
2929

30-
* New proposed signature:
30+
* New proposed signature:
3131

32-
* pgr_boykovKolmogorov(Combinations)
32+
* pgr_boykovKolmogorov(Combinations)
3333

34-
* Version 3.0.0
34+
.. rubric:: Version 3.0.0
3535

36-
* Function promoted to official.
36+
* Function promoted to official.
3737

38-
* Version 2.5.0
38+
.. rubric:: Version 2.5.0
3939

40-
* Renamed from ``pgr_maxFlowBoykovKolmogorov``
41-
* Function promoted to proposed.
40+
* Renamed from ``pgr_maxFlowBoykovKolmogorov``
41+
* Function promoted to proposed.
4242

43-
* Version 2.3.0
43+
.. rubric:: Version 2.3.0
4444

45-
* New experimental function.
45+
* New experimental function.
4646

4747

4848
Description

doc/max_flow/pgr_edmondsKarp.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,28 @@ flow from the sources to the targets using Edmonds Karp Algorithm.
2121

2222
.. Rubric:: Availability
2323

24-
* Version 4.0.0
24+
.. rubric:: Version 4.0.0
2525

26-
* Combinations signature promoted to official.
26+
* Combinations signature promoted to official.
2727

28-
* Version 3.2.0
28+
.. rubric:: Version 3.2.0
2929

30-
* New proposed signature:
30+
* New proposed signature:
3131

32-
* pgr_edmondsKarp(Combinations)
32+
* pgr_edmondsKarp(Combinations)
3333

34-
* Version 3.0.0
34+
.. rubric:: Version 3.0.0
3535

36-
* Function promoted to official.
36+
* Function promoted to official.
3737

38-
* Version 2.5.0
38+
.. rubric:: Version 2.5.0
3939

40-
* Renamed from ``pgr_maxFlowEdmondsKarp``
41-
* Function promoted to proposed.
40+
* Renamed from ``pgr_maxFlowEdmondsKarp``
41+
* Function promoted to proposed.
4242

43-
* Version 2.3.0
43+
.. rubric:: Version 2.3.0
4444

45-
* New experimental function.
45+
* New experimental function.
4646

4747

4848
Description

doc/spanningTree/pgr_primDD.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Edges SQL
125125
Result columns
126126
-------------------------------------------------------------------------------
127127

128-
.. include:: drivingDistance-category.rst
128+
.. include:: pgRouting-concepts.rst
129129
:start-after: spantree-result-columns-start
130130
:end-before: spantree-result-columns-end
131131

doc/spanningTree/pgr_primDFS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Edges SQL
127127
Result columns
128128
-------------------------------------------------------------------------------
129129

130-
.. include:: drivingDistance-category.rst
130+
.. include:: pgRouting-concepts.rst
131131
:start-after: spantree-result-columns-start
132132
:end-before: spantree-result-columns-end
133133

doc/src/release_notes.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ Summary of changes by function
104104
:start-after: Version 4.0.0
105105
:end-before: .. rubric
106106

107+
* pgr_boykovKolmogorov
108+
109+
.. include:: pgr_boykovKolmogorov.rst
110+
:start-after: Version 4.0.0
111+
:end-before: .. rubric
112+
107113
* pgr_breadthFirstSearch
108114

109115
.. include:: pgr_breadthFirstSearch.rst
@@ -152,6 +158,12 @@ Summary of changes by function
152158
:start-after: Version 4.0.0
153159
:end-before: .. rubric
154160

161+
* pgr_edmondsKarp
162+
163+
.. include:: pgr_edmondsKarp.rst
164+
:start-after: Version 4.0.0
165+
:end-before: .. rubric
166+
155167
* pgr_edwardMoore
156168

157169
.. include:: pgr_edwardMoore.rst

0 commit comments

Comments
 (0)