I have different service time for each location. how can i add these service time in time window solution?
I've already go through or-tools/ortools/constraint_solver/samples/cvrptw.py
but could not figure it out
I have different service time for each location. how can i add these service time in time window solution?
I've already go through or-tools/ortools/constraint_solver/samples/cvrptw.py
but could not figure it out
You should build your Transit matrix as follow.
Transit(A, B) == ServiceCost(A) + TravelCost(A, B)