How can I implement vrp when different vehicles are initially in a different place?
Asked
Active
Viewed 406 times
1 Answers
1
There's a good reason why Vehicle
and Depot
are separate classes in the vehicle routing example. Just have multipe depots, one per starting location of a set of vehicles. Or remove the depot
class entirely and just give every Vehicle
a starting Location
.

Geoffrey De Smet
- 26,223
- 11
- 73
- 120
-
Thank you Geoffrey – DarwinFernandez May 13 '16 at 11:48