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
max_load
breaks
Currently, vroom 1.3.0 supports a max_load input with the breaks object:
[max_load]: an array of integers describing the maximum vehicle load for which this break can happen --- https://github.com/VROOM-Project/vroom/blob/master/docs/API.md
pyvroom 1.3.0 only allows for id, time_windows, service and description (see
id
time_windows
service
description
pyvroom/src/vroom/break_.py
Line 33 in 9965ce2
def __init__( self, id: Union[Break, int], time_windows: Sequence[TimeWindow] = (), service: int = 0, description: str = "", ) -> None:
Would it be easy to include max_load input with pyvroom as well?
The text was updated successfully, but these errors were encountered:
That is a good catch, and something I missed in the recient release.
I've made a fix in version 1.13.1. Let me know if it works as expected.
Sorry, something went wrong.
Thanks, I'll do some testing later next week and will close the issue once tested.
No branches or pull requests
Currently, vroom 1.3.0 supports a
max_load
input with thebreaks
object:pyvroom 1.3.0 only allows for
id
,time_windows
,service
anddescription
(seepyvroom/src/vroom/break_.py
Line 33 in 9965ce2
Would it be easy to include
max_load
input with pyvroom as well?The text was updated successfully, but these errors were encountered: