Skip to content

Commit 964916c

Browse files
committed
(doc) documentation of the changes
1 parent fe2abd7 commit 964916c

File tree

2 files changed

+52
-10
lines changed

2 files changed

+52
-10
lines changed

NEWS.md

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,36 @@ milestone for 4.0.0
4141
* pgr_maxFlow(Combinations)
4242
* pgr_pushRelabel(Combinations)
4343

44+
**code enhancements:**
4445

45-
**Removal of deprecated functions and signatures**
46+
* Simplify C/C++ code for all overloads of
4647

47-
* ``pgr_trspviaedges(text,integer[],double precision[],boolean,boolean,text)``
48-
* ``pgr_trspviavertices(text,anyarray,boolean,boolean,text)``
49-
* ``pgr_trsp(text,integer,double precision,integer,double precision,boolean,boolean,text)``
50-
* ``pgr_trsp(text,integer,integer,boolean,boolean,text)``
48+
* pgr_dijkstra
49+
50+
**Removal of SQL deprecated functions and signatures**
51+
52+
* pgr_trspviaedges(text,integer[],double precision[],boolean,boolean,text)
53+
* pgr_trspviavertices(text,anyarray,boolean,boolean,text)
54+
* pgr_trsp(text,integer,double precision,integer,double precision,boolean,boolean,text)
55+
* pgr_trsp(text,integer,integer,boolean,boolean,text)
56+
* _pgr_dijkstranear(text,anyarray,anyarray,bigint,boolean)
57+
* _pgr_dijkstranear(text,anyarray,bigint,bigint,boolean)
58+
* _pgr_dijkstranear(text,bigint,anyarray,bigint,boolean)
59+
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint)
60+
* _pgr_dijkstra(text,text,boolean,boolean,boolean)
61+
62+
**Deprecation of internal C/C++ functions**
63+
64+
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint)``
65+
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint,boolean)``
66+
* _pgr_dijkstra(text,text,boolean,boolean,bigint,boolean)``
67+
* _pgr_dijkstra(text,text,boolean,boolean,boolean)``
5168

69+
**Internal C/C++ functions in legacy**
5270

71+
* _trsp(text,text,anyarray,anyarray,boolean)``
72+
* _v4trsp(text,text,anyarray,anyarray,boolean)``
73+
* _v4trsp(text,text,text,boolean)``
5374

5475
# pgRouting 3
5576

doc/src/release_notes.rst

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,36 @@ milestone for 4.0.0
7272
* pgr_maxFlow(Combinations)
7373
* pgr_pushRelabel(Combinations)
7474

75+
.. rubric:: code enhancements:
7576

76-
.. rubric:: Removal of deprecated functions and signatures
77+
* Simplify C/C++ code for all overloads of
7778

78-
* ``pgr_trspviaedges(text,integer[],double precision[],boolean,boolean,text)``
79-
* ``pgr_trspviavertices(text,anyarray,boolean,boolean,text)``
80-
* ``pgr_trsp(text,integer,double precision,integer,double precision,boolean,boolean,text)``
81-
* ``pgr_trsp(text,integer,integer,boolean,boolean,text)``
79+
* pgr_dijkstra
80+
81+
.. rubric:: Removal of SQL deprecated functions and signatures
82+
83+
* pgr_trspviaedges(text,integer[],double precision[],boolean,boolean,text)
84+
* pgr_trspviavertices(text,anyarray,boolean,boolean,text)
85+
* pgr_trsp(text,integer,double precision,integer,double precision,boolean,boolean,text)
86+
* pgr_trsp(text,integer,integer,boolean,boolean,text)
87+
* _pgr_dijkstranear(text,anyarray,anyarray,bigint,boolean)
88+
* _pgr_dijkstranear(text,anyarray,bigint,bigint,boolean)
89+
* _pgr_dijkstranear(text,bigint,anyarray,bigint,boolean)
90+
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint)
91+
* _pgr_dijkstra(text,text,boolean,boolean,boolean)
92+
93+
.. rubric:: Deprecation of internal C/C++ functions
94+
95+
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint)``
96+
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint,boolean)``
97+
* _pgr_dijkstra(text,text,boolean,boolean,bigint,boolean)``
98+
* _pgr_dijkstra(text,text,boolean,boolean,boolean)``
8299

100+
.. rubric:: Internal C/C++ functions in legacy
83101

102+
* _trsp(text,text,anyarray,anyarray,boolean)``
103+
* _v4trsp(text,text,anyarray,anyarray,boolean)``
104+
* _v4trsp(text,text,text,boolean)``
84105

85106
pgRouting 3
86107
*******************************************************************************

0 commit comments

Comments
 (0)