Solving CVRP with ACO
Minimizing Travel Cost for Complex Delivery Problems
This scenario involves the Capacitated Vehicle Routing Problem,
solved using the meta-heuristics algorithm Ant Colony Optimization. Basically, VRP is a network consisting of a number of nodes
(sometimes called cities) and arcs connecting one to all others along with the corresponding costs.
Mostly, the aim is to minimize the cost in visiting each customer once and only once. The term
"capacitated" is added due to some capacity constraints on the vehicles (vcap).
Enter the problem. Some company wants to deliver loads to a number of customers. In this case, we
have 24 nodes based on the location of Germany's train stations (don't ask why). The delivery
always starts from and ends at the depot, visiting a list of customers in other cities. And then
a number of questions arise:
- How do we minimize the travel cost in terms of distance?
- How many trucks are required?
- Which cities are visited by the truck #1, #2. etc.?
- depot: [0..23], def = 0
- vcap: [200..400], def = 400
There is a way to set all the demands, but I don't think you are ready for that. 😉
VCAP: 300 vol.
ACTIVE: 19 customers
- Kassel-Wilhelmshöhe (95 vol.)
- Düsseldorf Hbf (30 vol.)
- Frankfurt Hbf (95 vol.)
- Hannover Hbf (75 vol.)
- Aachen Hbf (50 vol.)
- Stuttgart Hbf (60 vol.)
- Hamburg Hbf (80 vol.)
- München Hbf (80 vol.)
- Bremen Hbf (85 vol.)
- Leipzig Hbf (95 vol.)
- Nürnberg Hbf (65 vol.)
- Karlsruhe Hbf (90 vol.)
- Ulm Hbf (45 vol.)
- Köln Hbf (70 vol.)
- Mannheim Hbf (65 vol.)
- Mainz Hbf (45 vol.)
- Saarbrücken Hbf (50 vol.)
- Osnabrück Hbf (45 vol.)
- Freiburg Hbf (95 vol.)
Tour 1
COST: 1333.928 km
LOAD: 300 vol.
- Mainz Hbf | 45 vol.
- Mannheim Hbf | 65 vol.
- Frankfurt Hbf | 95 vol.
- Kassel-Wilhelmshöhe | 95 vol.
Tour 2
COST: 1392.837 km
LOAD: 285 vol.
- München Hbf | 80 vol.
- Ulm Hbf | 45 vol.
- Nürnberg Hbf | 65 vol.
- Leipzig Hbf | 95 vol.
Tour 3
COST: 947.647 km
LOAD: 285 vol.
- Hannover Hbf | 75 vol.
- Osnabrück Hbf | 45 vol.
- Bremen Hbf | 85 vol.
- Hamburg Hbf | 80 vol.
Tour 4
COST: 1773.711 km
LOAD: 295 vol.
- Stuttgart Hbf | 60 vol.
- Karlsruhe Hbf | 90 vol.
- Freiburg Hbf | 95 vol.
- Saarbrücken Hbf | 50 vol.
Tour 5
COST: 1284.236 km
LOAD: 150 vol.
- Düsseldorf Hbf | 30 vol.
- Aachen Hbf | 50 vol.
- Köln Hbf | 70 vol.
LOAD: 300 vol.
- Mainz Hbf | 45 vol.
- Mannheim Hbf | 65 vol.
- Frankfurt Hbf | 95 vol.
- Kassel-Wilhelmshöhe | 95 vol.
LOAD: 285 vol.
- München Hbf | 80 vol.
- Ulm Hbf | 45 vol.
- Nürnberg Hbf | 65 vol.
- Leipzig Hbf | 95 vol.
LOAD: 285 vol.
- Hannover Hbf | 75 vol.
- Osnabrück Hbf | 45 vol.
- Bremen Hbf | 85 vol.
- Hamburg Hbf | 80 vol.
LOAD: 295 vol.
- Stuttgart Hbf | 60 vol.
- Karlsruhe Hbf | 90 vol.
- Freiburg Hbf | 95 vol.
- Saarbrücken Hbf | 50 vol.
LOAD: 150 vol.
- Düsseldorf Hbf | 30 vol.
- Aachen Hbf | 50 vol.
- Köln Hbf | 70 vol.
#generations: 10 for global, 5 for local
#ants: 5 times #active_customers
ACO
Rel. importance of pheromones α = 1.0
Rel. importance of visibility β = 10.0
Trail persistance ρ = 0.5
Pheromone intensity Q = 10
See this wikipedia page to learn more.
NETWORK Depo: [1] Berlin Hbf | Number of cities: 24 | Total loads: 1315 vol. | Vehicle capacity: 300 vol. Loads: [95, 0, 30, 95, 75, 50, 60, 0, 80, 80, 85, 95, 0, 65, 90, 45, 70, 65, 0, 45, 0, 50, 45, 95] ITERATION Generation: #1 Best cost: 7613.428 | Path: [1, 0, 16, 2, 5, 19, 1, 11, 4, 10, 22, 1, 8, 3, 17, 6, 1, 13, 9, 15, 14, 1, 21, 23, 1] Best cost: 7345.802 | Path: [1, 2, 16, 5, 19, 3, 1, 11, 0, 4, 1, 8, 10, 22, 21, 1, 13, 6, 14, 17, 1, 9, 15, 23, 1] Best cost: 7330.653 | Path: [1, 4, 10, 22, 0, 1, 11, 13, 9, 15, 1, 8, 2, 16, 5, 21, 1, 23, 14, 17, 19, 1, 3, 6, 1] Best cost: 7202.853 | Path: [1, 8, 10, 4, 22, 1, 11, 0, 3, 1, 13, 9, 15, 6, 19, 1, 2, 16, 5, 21, 17, 1, 14, 23, 1] Best cost: 7042.721 | Path: [1, 10, 8, 4, 22, 1, 11, 13, 9, 15, 1, 0, 3, 19, 17, 1, 6, 14, 23, 21, 1, 2, 16, 5, 1] Best cost: 7012.302 | Path: [1, 4, 10, 8, 22, 1, 11, 13, 9, 15, 1, 0, 3, 19, 17, 1, 6, 14, 23, 21, 1, 16, 2, 5, 1] Generation: #2 Best cost: 7006.974 | Path: [1, 8, 10, 22, 4, 1, 11, 13, 9, 15, 1, 0, 3, 19, 17, 1, 14, 6, 21, 23, 1, 16, 2, 5, 1] Best cost: 6900.668 | Path: [1, 11, 13, 9, 15, 1, 8, 10, 4, 22, 1, 0, 3, 19, 17, 1, 6, 14, 23, 21, 1, 2, 16, 5, 1] Generation: #4 Best cost: 6846.145 | Path: [1, 8, 10, 22, 4, 1, 11, 0, 3, 1, 13, 9, 15, 6, 19, 1, 17, 14, 23, 21, 1, 16, 2, 5, 1] Best cost: 6788.518 | Path: [1, 8, 10, 22, 4, 1, 11, 13, 9, 15, 1, 0, 3, 19, 17, 1, 6, 14, 23, 21, 1, 16, 2, 5, 1] Generation: #5 Best cost: 6768.142 | Path: [1, 0, 3, 19, 17, 1, 11, 13, 9, 15, 1, 8, 10, 22, 4, 1, 6, 14, 23, 21, 1, 5, 16, 2, 1] OPTIMIZING each tour... Current: [[1, 0, 3, 19, 17, 1], [1, 11, 13, 9, 15, 1], [1, 8, 10, 22, 4, 1], [1, 6, 14, 23, 21, 1], [1, 5, 16, 2, 1]] [1] Cost: 1338.208 to 1333.928 | Optimized: [1, 19, 17, 3, 0, 1] [2] Cost: 1401.293 to 1392.837 | Optimized: [1, 9, 15, 13, 11, 1] [3] Cost: 951.526 to 947.647 | Optimized: [1, 4, 22, 10, 8, 1] [5] Cost: 1303.404 to 1284.236 | Optimized: [1, 2, 5, 16, 1] ACO RESULTS [1/300 vol./1333.928 km] Berlin Hbf -> Mainz Hbf -> Mannheim Hbf -> Frankfurt Hbf -> Kassel-Wilhelmshöhe --> Berlin Hbf [2/285 vol./1392.837 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Nürnberg Hbf -> Leipzig Hbf --> Berlin Hbf [3/285 vol./ 947.647 km] Berlin Hbf -> Hannover Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf --> Berlin Hbf [4/295 vol./1773.711 km] Berlin Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Saarbrücken Hbf --> Berlin Hbf [5/150 vol./1284.236 km] Berlin Hbf -> Düsseldorf Hbf -> Aachen Hbf -> Köln Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 6732.359 km.