Skip to content

Commit

Permalink
(doc) documentation of the changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Jan 23, 2025
1 parent fe2abd7 commit 964916c
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 10 deletions.
31 changes: 26 additions & 5 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,36 @@ milestone for 4.0.0
* pgr_maxFlow(Combinations)
* pgr_pushRelabel(Combinations)

**code enhancements:**

**Removal of deprecated functions and signatures**
* Simplify C/C++ code for all overloads of

* ``pgr_trspviaedges(text,integer[],double precision[],boolean,boolean,text)``
* ``pgr_trspviavertices(text,anyarray,boolean,boolean,text)``
* ``pgr_trsp(text,integer,double precision,integer,double precision,boolean,boolean,text)``
* ``pgr_trsp(text,integer,integer,boolean,boolean,text)``
* pgr_dijkstra

**Removal of SQL deprecated functions and signatures**

* pgr_trspviaedges(text,integer[],double precision[],boolean,boolean,text)
* pgr_trspviavertices(text,anyarray,boolean,boolean,text)
* pgr_trsp(text,integer,double precision,integer,double precision,boolean,boolean,text)
* pgr_trsp(text,integer,integer,boolean,boolean,text)
* _pgr_dijkstranear(text,anyarray,anyarray,bigint,boolean)
* _pgr_dijkstranear(text,anyarray,bigint,bigint,boolean)
* _pgr_dijkstranear(text,bigint,anyarray,bigint,boolean)
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint)
* _pgr_dijkstra(text,text,boolean,boolean,boolean)

**Deprecation of internal C/C++ functions**

* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint)``
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint,boolean)``
* _pgr_dijkstra(text,text,boolean,boolean,bigint,boolean)``
* _pgr_dijkstra(text,text,boolean,boolean,boolean)``

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

* _trsp(text,text,anyarray,anyarray,boolean)``
* _v4trsp(text,text,anyarray,anyarray,boolean)``
* _v4trsp(text,text,text,boolean)``

# pgRouting 3

Expand Down
31 changes: 26 additions & 5 deletions doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,36 @@ milestone for 4.0.0
* pgr_maxFlow(Combinations)
* pgr_pushRelabel(Combinations)

.. rubric:: code enhancements:

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

* ``pgr_trspviaedges(text,integer[],double precision[],boolean,boolean,text)``
* ``pgr_trspviavertices(text,anyarray,boolean,boolean,text)``
* ``pgr_trsp(text,integer,double precision,integer,double precision,boolean,boolean,text)``
* ``pgr_trsp(text,integer,integer,boolean,boolean,text)``
* pgr_dijkstra

.. rubric:: Removal of SQL deprecated functions and signatures

* pgr_trspviaedges(text,integer[],double precision[],boolean,boolean,text)
* pgr_trspviavertices(text,anyarray,boolean,boolean,text)
* pgr_trsp(text,integer,double precision,integer,double precision,boolean,boolean,text)
* pgr_trsp(text,integer,integer,boolean,boolean,text)
* _pgr_dijkstranear(text,anyarray,anyarray,bigint,boolean)
* _pgr_dijkstranear(text,anyarray,bigint,bigint,boolean)
* _pgr_dijkstranear(text,bigint,anyarray,bigint,boolean)
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint)
* _pgr_dijkstra(text,text,boolean,boolean,boolean)

.. rubric:: Deprecation of internal C/C++ functions

* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint)``
* _pgr_dijkstra(text,anyarray,anyarray,boolean,boolean,boolean,bigint,boolean)``
* _pgr_dijkstra(text,text,boolean,boolean,bigint,boolean)``
* _pgr_dijkstra(text,text,boolean,boolean,boolean)``

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

* _trsp(text,text,anyarray,anyarray,boolean)``
* _v4trsp(text,text,anyarray,anyarray,boolean)``
* _v4trsp(text,text,text,boolean)``

pgRouting 3
*******************************************************************************
Expand Down

0 comments on commit 964916c

Please sign in to comment.