-
Notifications
You must be signed in to change notification settings - Fork 10
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
Added edge_duration section #122
Conversation
@Shashank-1234 thanks for the PR! This is really more of @leonlan's territory. @leonlan could you have a look at this once you return from your holidays? |
It's easiest to fix the formatting by setting up pre-commit locally and having it run on all files once. The PyVRP docs about pre-commit should apply here too, I think. |
Hi @Shashank-1234, thanks for opening this PR. While PyVRP does support both edge distances and durations, the "original" VRPLIB format based on TSPLIB, CVRPLIB, and LKH-3 does not really make this distinction. We should first address how to include durations in VRPLIB format before supporting this in the |
Hi @leonlan, thanks for your comment. Looks like TSPLIB has an option to take in a special function while calculation of EDGE_WEIGHT. User can probably leverage this to also add in the duration of the edge. But PyVRP offers a separate attribute for duration and as i understand, it adds distance + duration for cost function. Since, PyVRP exposed duration as a separate attribute to the user, i think it makes sense to also support it in the vrplib. Let me know what you think. |
I'm not opposed to supporting duration matrices in VRPLIB, but there is a bit more context that we need to take into account before supporting it. VRPLIB is a separate project from PyVRP, as VRPLIB is concerned with VRP benchmark instances that go beyond the PyVRP solver. I am currently not aware of any VRP benchmark instances that include travel time/duration matrix data, so before adding support we should first find use cases for it. |
I'm closing this PR for now, as adding support for edge durations needs further discussion. Please feel free to open an issue to share use cases and help develop this idea further. |
Added duration section and functions to parse the instance as well as read and write functions in vrplib to handle problems that has both durations and distances which need to be simultaneously optimised. pyvrp does offer the functionality PyVRP/PyVRP#546 which is not yet implemented in the vrplib.