We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@XJTUmg
Is it possible to add to the Chinese postman problem a start_eid (start edge id) so that the first line of the result is that edge?
SELECT * FROM pgr_directedChPP( 'SELECT id, source, target, cost, reverse_cost FROM edge_table where id < 17' ); seq | node | edge | cost | agg_cost -----+------+------+------+---------- 1 | 4 | 3 | 1 | 0 2 | 3 | 2 | 1 | 1 3 | 2 | 1 | 1 | 2 4 | 1 | 1 | 1 | 3 etc
have
SELECT * FROM pgr_directedChPP( 'SELECT id, source, target, cost, reverse_cost FROM edge_table where id < 17', 2 -- the first edge to be on the list is edge 2 ); seq | node | edge | cost | agg_cost -----+------+------+------+---------- 1 | 3 | 2 | 1 | 1 2 | 2 | 1 | 1 | 2 3 | 1 | 1 | 1 | 3 etc
The text was updated successfully, but these errors were encountered:
XJTUmg
No branches or pull requests
@XJTUmg
Is it possible to add to the Chinese postman problem a start_eid (start edge id) so that the first line of the result is that edge?
have
The text was updated successfully, but these errors were encountered: