i dont know how to do it
our problem can be classified as the combination of two VRPs:
- Capacitated Vehicle Routing Problem (CVRP or CVRPTW): The vehicles have limited carrying capacity of the goods that must be delivered.
- Vehicle Routing Problem with Multiple Trips (VRPMT): The vehicles can do more than one route.
- config.py
- store benchmark parameters
- constraint.py
- check capacity and demand constraints
- calculate.py
- calculate demands and distances(cost)
optimizer.py
- add optimizer
READ!