You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wonder if you can draw this graph, because even that it comes from the sample data, its not quite the same:
SELECT id, source, target, cost FROM edge_table
WHERE id = ANY(ARRAY[8, 9, 11, 13]) AND cost > 0
UNION
SELECT id, target, source, reverse_cost FROM edge_table
WHERE id = ANY(ARRAY[15, 16]) AND reverse_cost > 0'
FYI: you have the link to the sample data from version 2.3 when we are on 2.5
…gRouting#1006
* changing NEWS and release notes
modified: NEWS
modified: doc/src/release_notes.rst
* Adding a unit test for testing the issues
new file: pgtap/contraction/issue1002/issue1002.sql
modified: test/contraction/test.conf
Sample data is used to demonstrate this bug.
Expected Behavior
Actual Behavior
It can be noticed that the shortcuts added from vertex 5 to vertex 4 do not store the contracted vertices 11 and 12.
The text was updated successfully, but these errors were encountered: