Skip to content

Commit fb80779

Browse files
committed
Fixing merge conflicts
2 parents 407888b + ac71b4e commit fb80779

File tree

20 files changed

+125
-121
lines changed

20 files changed

+125
-121
lines changed

.github/workflows/macos.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ jobs:
6969
make install
7070
7171
- name: Install pgTAP
72+
if: false
7273
run: |
7374
git clone https://github.com/theory/pgtap.git pgTapExtension
7475
cd pgTapExtension
@@ -78,6 +79,7 @@ jobs:
7879
ln -s $(find `brew --prefix` -name pg_prove) symlink it into $(brew --prefix)/bin
7980
8081
- name: Test
82+
if: false
8183
run: |
8284
export PATH=$(brew --prefix)/Cellar/perl/$(perl -e 'print substr($^V, 1)')/bin:$PATH
8385
pg_ctl -D $(brew --prefix)/var/postgresql@14 start

doc/src/index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ Available Functions but not official pgRouting functions
8989
:doc:`release_notes`
9090
===============================================================================
9191

92+
Current release
93+
-------------------------------------------------------------------------------
94+
9295
.. include:: release_notes.rst
9396
:start-after: current
9497
:end-before: pgRouting 3.6

docqueries/max_flow/edgeDisjointPaths.result

Lines changed: 98 additions & 98 deletions
Large diffs are not rendered by default.

docqueries/mincut/stoerWagner.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SELECT * FROM pgr_stoerWagner(
88
FROM edges WHERE id < 17');
99
seq | edge | cost | mincut
1010
-----+------+------+--------
11-
1 | 6 | 1 | 1
11+
1 | 14 | 1 | 1
1212
(1 row)
1313

1414
/* -- q2 */

docqueries/version/full_version.result

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ SET client_min_messages TO NOTICE;
44
SET
55
/* -- q1 */
66
SELECT version, library FROM pgr_full_version();
7-
version | library
8-
-----------+-----------------
9-
3.7.0-dev | pgrouting-3.7.0
7+
version | library
8+
---------+-----------------
9+
3.7.0 | pgrouting-3.7.0
1010
(1 row)
1111

1212
/* -- q2 */

docqueries/version/version.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SET
66
SELECT pgr_version();
77
pgr_version
88
-------------
9-
3.7.0-dev
9+
3.7.0
1010
(1 row)
1111

1212
/* -- q2 */

include/cpp_common/basic_vertex.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ namespace pgrouting {
4343
class Basic_vertex {
4444
public:
4545
Basic_vertex() :
46-
id(0) {}
46+
id(0), vertex_index(0) {}
4747
Basic_vertex(const Basic_vertex &v) :
48-
id(v.id) {}
48+
id(v.id), vertex_index(0) {}
4949

5050
explicit Basic_vertex(const int64_t _id) :
51-
id(_id) {}
51+
id(_id), vertex_index(0) {}
5252

5353
Basic_vertex& operator=(const Basic_vertex&) = default;
5454

5555
Basic_vertex(const Edge_t &other, bool is_source) :
56-
id(is_source? other.source : other.target) {}
56+
id(is_source? other.source : other.target), vertex_index(0) {}
5757

5858
void cp_members(const Basic_vertex &other) {
5959
this->id = other.id;

locale/de/LC_MESSAGES/index.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: pgRouting v3.4.0-dev\n"
8+
"Project-Id-Version: pgRouting v3.7.0\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2022-06-25 12:55-0500\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"

locale/de/LC_MESSAGES/pgrouting_doc_strings.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Regina Obe <[email protected]>, 2023.
55
msgid ""
66
msgstr ""
7-
"Project-Id-Version: pgRouting v3.6.0-dev\n"
7+
"Project-Id-Version: pgRouting v3.7.0\n"
88
"Report-Msgid-Bugs-To: \n"
99
"POT-Creation-Date: 2024-10-17 00:50+0000\n"
1010
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"

locale/en/LC_MESSAGES/index.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: pgRouting v3.4.0-dev\n"
9+
"Project-Id-Version: pgRouting v3.7.0\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2022-06-25 12:55-0500\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"

0 commit comments

Comments
 (0)