Hi there - I am looking at the implementation here:
https://developers.google.com/optimization/routing/vrptw
In the following lines of code, is there a certain unit of time that this implementation assumes (e.g. 30 minutes?)? I am wondering about this since I have my data in half hours, so I will need to make sure that everything is in half hours.
Also, what does "Don't force start cumul to zero." mean?
# Add Time Windows constraint.
time = 'Time'
routing.AddDimension(
transit_callback_index,
30, # allow waiting time
30, # maximum time per vehicle
False, # Don't force start cumul to zero.
time)
time_dimension = routing.GetDimensionOrDie(time)
Thanks,
Hanna