pgRouting / pgrouting

Repository contains pgRouting library. Development branch is "develop", stable branch is "master"
https://pgrouting.org
GNU General Public License v2.0
1.12k stars 364 forks source link

Standardize spaningTree functions output #2605

Closed cvvergara closed 5 months ago

cvvergara commented 5 months ago

Currently pgr_drivingDistance has outputs:

(seq, depth, start_vid, pred, node, edge, cost, agg_cost)

For Kruskal's algorithm

Output needs to be standardized.

Change:

(seq, depth, start_vid, node, edge, cost, agg_cost)

to (by adding pred)

(seq, depth, start_vid, pred, node, edge, cost, agg_cost)