-
Notifications
You must be signed in to change notification settings - Fork 337
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
Max distance With relevance to tasks #1118
Comments
There is no way to enforce this currently, as the |
You could get distance matrix between the points (ex. using OSRM) and then put large number (ex. |
@RegularnaMatrica Can you please elaborate, the proposed solution and how it could impact VROOM solution |
The suggestion as I understand it would be to prefetch the matrices, then modify them by setting a huge cost for values that you want to avoid (e.g. those representing edges over 5km) before feeding them into VROOM. This may lead to solutions with less "long" legs since those would be highly penalized. The drawbacks are:
|
@jcoupey I thought that |
Hi I have a problem and not sure if VROOM can solve this specific case:-
we have max_distance & max_tasks parameters
The objective is to try to make sure that the distance between each of the tasks does not exceed a certain distance eg. max 5 KM per task. or even decide if the solution must have a certain max distance depending on the trips tasks that I will get out of the solution. is there any workaround to get this result
The text was updated successfully, but these errors were encountered: