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

[FEATURE REQUEST] Add max-cost path finder #7

Open
LdDl opened this issue Oct 16, 2020 · 0 comments
Open

[FEATURE REQUEST] Add max-cost path finder #7

LdDl opened this issue Oct 16, 2020 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@LdDl
Copy link
Owner

LdDl commented Oct 16, 2020

Is your feature request related to a problem? Please describe.
Would be cool to find shortes path with max cost restriction option.

Describe the solution you'd like and provide pseudocode examples if you can
pseudocode:

fn ShortestPath(from, to, max_cost) {
    if distance > max_cost {
        stop
    }
}

Describe alternatives you've considered and provide pseudocode examples if you can
nope

Additional context
It would be usefull for path estimation when we know max cost.
Example application: If I can't spend 5 minutes to reach destination point of interest on pedestrian based-graph, then I choose vehicle-based graph.

@LdDl LdDl added the enhancement New feature or request label Oct 16, 2020
@LdDl LdDl self-assigned this Oct 16, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant