Ilya Builuk
Ilya Builuk
No, not yet. Maybe `issues` and `discussions` serves better from documentation point of view? Chat is good as it is nearly real time communication channel, but it is harder to...
Regarding the refueling example. Would break with specified location after some period of time (or distance) work better for this purpose? Logically, you don't want to refuel your vehicle right...
I think it can be a `tag` property, similar one for a job. However, it would be one per break definition, not per break's location.
I've added a tag property for break in the master branch. The plan is to make a new release this week, I just need to add some extra checks for...
I think it should be possible: if I'm not mistaken, only problem validation prevents it at the moment: https://github.com/reinterpretcat/vrp/blob/master/vrp-pragmatic/src/validation/vehicles.rs#L91 If you pass true for last parameter (`skip_intersection_check`), then it should...
I meant that you can checkout the source code, modify the line above, build binaries locally and test it
Hi, no, there was no changes in api contract. I'll check it once I have time (just returned from vacation). **Update**: actually, there is `can_assign_break_between_jobs` test which validates tag assignment...
My initial motivation of the ticket was to avoid adding capacity constraint into constrain pipeline when no demand/capacity is needed. At the moment, it is added all the time and...
Hi, it depends. The solver itself doesn't assume any specific units when routing matrix is used: it should be just consistent. So, if you have meters and seconds in the...
I've rechecked implementation and actually, seconds are assumed by default: https://github.com/reinterpretcat/vrp/blob/master/vrp-pragmatic/src/lib.rs#L58 So, I need to update documentation