[pgrouting] branch master updated (e9b419e -> 4e3478f)

Bas Couwenberg sebastic at debian.org
Sun Nov 20 21:28:48 UTC 2016


This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository pgrouting.

      from  e9b419e   Set distribution to unstable.
       new  7ca1f71   Imported Upstream version 2.3.1
       new  f7f1362   Merge tag 'upstream/2.3.1'
       new  a442f24   New upstream release.
       new  4e3478f   Set distribution to unstable.

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |  105 +-
 CMakeLists.txt                                     |    8 +-
 NEWS                                               |    9 +
 README.md                                          |    9 +-
 VERSION                                            |    2 +-
 appveyor.yml                                       |    5 -
 ci/appveyor/install.bat                            |    2 +-
 debian/changelog                                   |    7 +
 doc/index.rst                                      |    1 +
 doc/src/changelog/release_notes.rst                |   16 +
 doc/src/installation/installation.rst              |   25 +-
 doc/test/utilities-any.result                      |    2 +-
 src/allpairs/src/floydWarshall.c                   |    4 +-
 src/allpairs/src/johnson.c                         |    4 +-
 src/alpha_shape/src/alpha.c                        |    8 +-
 src/astar/src/astarManyToMany.c                    |    4 +-
 src/astar/src/astarManyToOne.c                     |    4 +-
 src/astar/src/astarOneToMany.c                     |    4 +-
 src/astar/src/astarOneToOne.c                      |    4 +-
 src/bd_astar/src/bdastar.c                         |    4 +-
 src/bd_dijkstra/doc/doc-bdDijkstra.queries         |   10 +-
 src/bd_dijkstra/src/bdsp.c                         |   20 +-
 src/contraction/src/contractGraph_driver.cpp       |    1 -
 src/dijkstra/src/dijkstraVia.c                     |    4 +-
 src/dijkstra/src/many_to_many_dijkstra.c           |    4 +-
 src/dijkstra/src/many_to_one_dijkstra.c            |    4 +-
 src/dijkstra/src/one_to_many_dijkstra.c            |    4 +-
 src/dijkstra/src/one_to_one_dijkstra.c             |    4 +-
 src/driving_distance/src/drivedist.c               |    4 +-
 .../src/many_to_dist_driving_distance.c            |    4 +-
 .../src/many_to_dist_withPointsDD.c                |    4 +-
 src/driving_distance/src/withPoints_dd.c           |    4 +-
 src/ksp/src/ksp.c                                  |    4 +-
 src/ksp/src/withPoints_ksp.c                       |    4 +-
 .../src/edge_disjoint_paths_many_to_many.c         |    7 +-
 src/max_flow/src/edge_disjoint_paths_many_to_one.c |    6 +-
 src/max_flow/src/edge_disjoint_paths_one_to_many.c |    6 +-
 src/max_flow/src/edge_disjoint_paths_one_to_one.c  |    4 +-
 src/max_flow/src/max_flow_many_to_many.c           |    7 +-
 src/max_flow/src/max_flow_many_to_one.c            |    5 +-
 src/max_flow/src/max_flow_one_to_many.c            |    5 +-
 src/max_flow/src/max_flow_one_to_one.c             |    4 +-
 src/max_flow/src/maximum_cardinality_matching.c    |    4 +-
 src/pickDeliver/src/pickDeliver.c                  |    4 +-
 src/topology/sql/create_vertices_table.sql         |    2 +-
 src/trsp/doc/doc-trsp.queries                      |   20 +-
 src/trsp/sql/CMakeLists.txt                        |    2 +-
 src/trsp/sql/routing_trsp.sql                      |   26 +-
 src/trsp/sql/routing_trsp_vias.sql                 |   26 +-
 src/trsp/sql/trsp_V2.2.sql                         |   88 +-
 src/trsp/sql/vias_trsp_V2.2.sql                    |   24 +-
 src/trsp/src/CMakeLists.txt                        |    6 +-
 src/trsp/src/GraphDefinition.cpp                   |  681 ++++++++-----
 src/trsp/src/GraphDefinition.h                     |  247 +++--
 src/trsp/src/trsp.c                                | 1070 +++++++++++++-------
 src/trsp/src/trsp.h                                |   91 ++
 src/trsp/src/{trsp_driver.cpp => trsp_core.cpp}    |   80 +-
 src/{bd_astar/tester => trsp/src}/utils.h          |  234 ++---
 src/trsp/test/doc-trsp.test.sql                    |   20 +-
 src/trsp/test/issue693.result                      |    5 +
 src/trsp/test/issue693.test.sql                    |   16 +
 src/trsp/test/pgtap/from1to3.test.sql              |    3 +
 ...restrictions-compare-dijkstra-directed.test.sql |    4 +-
 ...strictions-compare-dijkstra-undirected.test.sql |    4 +-
 src/trsp/test/test.conf                            |    1 +
 src/trsp/test/trsp-any-02.test.sql                 |    2 +-
 src/trsp/test/trsp_vias-any-04.test.sql            |    8 +-
 src/tsp/src/eucledianTSP.c                         |    4 +-
 src/tsp/src/newTSP.c                               |    4 +-
 src/tsp/src/tsp2.c                                 |    4 +-
 src/tsp/src/tsplib.c                               |    4 +-
 src/vrp_basic/src/VRP.c                            |    4 +-
 src/withPoints/src/many_to_many_withPoints.c       |    4 +-
 src/withPoints/src/many_to_one_withPoints.c        |    4 +-
 src/withPoints/src/one_to_many_withPoints.c        |    4 +-
 src/withPoints/src/one_to_one_withPoints.c         |    4 +-
 .../pgrouting--2.3.1.sig}                          |   38 +-
 .../{pgrouting--2.2.3.sig => pgrouting--2.3.0.sig} |   37 +-
 tools/testers/pg_prove_tests.sh                    |    2 +-
 tools/testers/update-tester.sh                     |   41 +-
 tools/travis/install-doxygen.sh                    |   28 +
 tools/travis/install-postgres.sh                   |   63 ++
 .../{before_script.sh => test-documentation.sh}    |   18 +-
 83 files changed, 2073 insertions(+), 1204 deletions(-)
 create mode 100644 src/trsp/src/trsp.h
 copy src/trsp/src/{trsp_driver.cpp => trsp_core.cpp} (60%)
 copy src/{bd_astar/tester => trsp/src}/utils.h (63%)
 create mode 100644 src/trsp/test/issue693.result
 create mode 100644 src/trsp/test/issue693.test.sql
 copy tools/{sigs/pgrouting--2.2.3.sig => curr-sig/pgrouting--2.3.1.sig} (67%)
 copy tools/sigs/{pgrouting--2.2.3.sig => pgrouting--2.3.0.sig} (68%)
 create mode 100755 tools/travis/install-doxygen.sh
 create mode 100755 tools/travis/install-postgres.sh
 copy tools/travis/{before_script.sh => test-documentation.sh} (59%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pgrouting.git



More information about the Pkg-grass-devel mailing list