Capacitated Vehicle Routing problem CVRP
Link to Capacitated Vehicle Routing problem CVRP == https://github.com/mayashenoi/DO/blob/main/cvrp-cplex(2).ipynb # Capcitaed Vehicle Routing problem. # Minimize the number of trips by a vehicle based on the capacity of the vehicle delivering quantities to customers import numpy as np rnd = np.random rnd.seed(0) n = 10 #number of customers/locations Q = 20 #vehicle capacity N = [i […]