Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standardize spaningTree functions output #2605

Closed
cvvergara opened this issue Jan 13, 2024 · 0 comments
Closed

Standardize spaningTree functions output #2605

cvvergara opened this issue Jan 13, 2024 · 0 comments

Comments

@cvvergara
Copy link
Member

Currently pgr_drivingDistance has outputs:

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

For Kruskal's algorithm

  • pgr_kruskalDD
  • pgr_kruskalDFS
  • pgr_kruskalBFS
    and for Prim's algorithm
  • pgr_primDD
  • pgr_primDFS
  • pgr_primBFS

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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant