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: 400 vol.
ACTIVE: 19 customers
- Berlin Hbf (95 vol.)
- Frankfurt Hbf (25 vol.)
- Hannover Hbf (40 vol.)
- Aachen Hbf (95 vol.)
- Dresden Hbf (45 vol.)
- München Hbf (100 vol.)
- Bremen Hbf (90 vol.)
- Dortmund Hbf (25 vol.)
- Nürnberg Hbf (50 vol.)
- Karlsruhe Hbf (50 vol.)
- Ulm Hbf (90 vol.)
- Köln Hbf (25 vol.)
- Mannheim Hbf (25 vol.)
- Kiel Hbf (70 vol.)
- Mainz Hbf (75 vol.)
- Würzburg Hbf (55 vol.)
- Saarbrücken Hbf (95 vol.)
- Osnabrück Hbf (95 vol.)
- Freiburg Hbf (75 vol.)
Tour 1
COST: 1146.27 km
LOAD: 395 vol.
- Würzburg Hbf | 55 vol.
- Nürnberg Hbf | 50 vol.
- München Hbf | 100 vol.
- Ulm Hbf | 90 vol.
- Karlsruhe Hbf | 50 vol.
- Mannheim Hbf | 25 vol.
- Frankfurt Hbf | 25 vol.
Tour 2
COST: 1303.957 km
LOAD: 390 vol.
- Dortmund Hbf | 25 vol.
- Köln Hbf | 25 vol.
- Aachen Hbf | 95 vol.
- Saarbrücken Hbf | 95 vol.
- Freiburg Hbf | 75 vol.
- Mainz Hbf | 75 vol.
Tour 3
COST: 1383.143 km
LOAD: 390 vol.
- Osnabrück Hbf | 95 vol.
- Hannover Hbf | 40 vol.
- Bremen Hbf | 90 vol.
- Kiel Hbf | 70 vol.
- Berlin Hbf | 95 vol.
Tour 4
COST: 745.255 km
LOAD: 45 vol.
- Dresden Hbf | 45 vol.
LOAD: 395 vol.
- Würzburg Hbf | 55 vol.
- Nürnberg Hbf | 50 vol.
- München Hbf | 100 vol.
- Ulm Hbf | 90 vol.
- Karlsruhe Hbf | 50 vol.
- Mannheim Hbf | 25 vol.
- Frankfurt Hbf | 25 vol.
LOAD: 390 vol.
- Dortmund Hbf | 25 vol.
- Köln Hbf | 25 vol.
- Aachen Hbf | 95 vol.
- Saarbrücken Hbf | 95 vol.
- Freiburg Hbf | 75 vol.
- Mainz Hbf | 75 vol.
LOAD: 390 vol.
- Osnabrück Hbf | 95 vol.
- Hannover Hbf | 40 vol.
- Bremen Hbf | 90 vol.
- Kiel Hbf | 70 vol.
- Berlin Hbf | 95 vol.
LOAD: 45 vol.
- Dresden Hbf | 45 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: [0] Kassel-Wilhelmshöhe | Number of cities: 24 | Total loads: 1220 vol. | Vehicle capacity: 400 vol. Loads: [0, 95, 0, 25, 40, 95, 0, 45, 0, 100, 90, 0, 25, 50, 50, 90, 25, 25, 70, 75, 55, 95, 95, 75] ITERATION Generation: #1 Best cost: 5012.670 | Path: [0, 1, 7, 9, 15, 14, 0, 3, 19, 17, 21, 23, 13, 20, 0, 22, 10, 4, 12, 16, 5, 0, 18, 0] Best cost: 4725.820 | Path: [0, 7, 1, 4, 10, 22, 12, 0, 3, 19, 17, 14, 21, 5, 16, 0, 20, 13, 9, 15, 23, 0, 18, 0] Best cost: 4652.145 | Path: [0, 20, 13, 9, 15, 14, 17, 3, 0, 12, 16, 5, 19, 21, 23, 0, 22, 10, 4, 1, 7, 0, 18, 0] Best cost: 4622.834 | Path: [0, 15, 9, 13, 20, 3, 19, 0, 12, 16, 5, 21, 23, 14, 17, 0, 22, 10, 4, 1, 7, 0, 18, 0] Generation: #2 Best cost: 4601.346 | Path: [0, 20, 13, 9, 15, 14, 17, 3, 0, 12, 16, 5, 21, 23, 19, 0, 22, 10, 4, 18, 1, 0, 7, 0] OPTIMIZING each tour... Current: [[0, 20, 13, 9, 15, 14, 17, 3, 0], [0, 12, 16, 5, 21, 23, 19, 0], [0, 22, 10, 4, 18, 1, 0], [0, 7, 0]] [3] Cost: 1405.864 to 1383.143 | Optimized: [0, 22, 4, 10, 18, 1, 0] ACO RESULTS [1/395 vol./1146.270 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Karlsruhe Hbf -> Mannheim Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [2/390 vol./1303.957 km] Kassel-Wilhelmshöhe -> Dortmund Hbf -> Köln Hbf -> Aachen Hbf -> Saarbrücken Hbf -> Freiburg Hbf -> Mainz Hbf --> Kassel-Wilhelmshöhe [3/390 vol./1383.143 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Hannover Hbf -> Bremen Hbf -> Kiel Hbf -> Berlin Hbf --> Kassel-Wilhelmshöhe [4/ 45 vol./ 745.255 km] Kassel-Wilhelmshöhe -> Dresden Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4578.625 km.