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

Added edge_duration section #122

Closed
wants to merge 7 commits into from
Closed

Conversation

Shashank-1234
Copy link

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.

@Shashank-1234 Shashank-1234 changed the title added edge_duration section Added edge_duration section Oct 4, 2024
@N-Wouda N-Wouda requested a review from leonlan October 4, 2024 20:38
@N-Wouda
Copy link
Member

N-Wouda commented Oct 4, 2024

@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?

@N-Wouda
Copy link
Member

N-Wouda commented Oct 4, 2024

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.

@leonlan
Copy link
Member

leonlan commented Oct 14, 2024

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 vrplib package. I'd be happy to discuss this further in #114.

@Shashank-1234
Copy link
Author

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.
https://tsplib95.readthedocs.io/en/stable/pages/usage.html#special-functions-label

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.

@leonlan
Copy link
Member

leonlan commented Oct 18, 2024

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. tsplib95.readthedocs.io/en/stable/pages/usage.html#special-functions-label

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.

@leonlan
Copy link
Member

leonlan commented Oct 18, 2024

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.

@leonlan leonlan closed this Oct 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants