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: 21 customers
- Kassel-Wilhelmshöhe (80 vol.)
- Frankfurt Hbf (25 vol.)
- Hannover Hbf (95 vol.)
- Aachen Hbf (90 vol.)
- Stuttgart Hbf (100 vol.)
- Dresden Hbf (35 vol.)
- Hamburg Hbf (30 vol.)
- München Hbf (65 vol.)
- Bremen Hbf (85 vol.)
- Leipzig Hbf (80 vol.)
- Dortmund Hbf (60 vol.)
- Nürnberg Hbf (35 vol.)
- Karlsruhe Hbf (35 vol.)
- Ulm Hbf (45 vol.)
- Köln Hbf (65 vol.)
- Mannheim Hbf (70 vol.)
- Kiel Hbf (20 vol.)
- Mainz Hbf (95 vol.)
- Würzburg Hbf (30 vol.)
- Saarbrücken Hbf (100 vol.)
- Osnabrück Hbf (30 vol.)
Tour 1
COST: 1640.186 km
LOAD: 300 vol.
- München Hbf | 65 vol.
- Ulm Hbf | 45 vol.
- Stuttgart Hbf | 100 vol.
- Karlsruhe Hbf | 35 vol.
- Frankfurt Hbf | 25 vol.
- Würzburg Hbf | 30 vol.
Tour 2
COST: 1082.275 km
LOAD: 295 vol.
- Dresden Hbf | 35 vol.
- Leipzig Hbf | 80 vol.
- Hannover Hbf | 95 vol.
- Bremen Hbf | 85 vol.
Tour 3
COST: 1607.19 km
LOAD: 295 vol.
- Dortmund Hbf | 60 vol.
- Köln Hbf | 65 vol.
- Aachen Hbf | 90 vol.
- Osnabrück Hbf | 30 vol.
- Hamburg Hbf | 30 vol.
- Kiel Hbf | 20 vol.
Tour 4
COST: 1591.867 km
LOAD: 300 vol.
- Mainz Hbf | 95 vol.
- Mannheim Hbf | 70 vol.
- Saarbrücken Hbf | 100 vol.
- Nürnberg Hbf | 35 vol.
Tour 5
COST: 785.078 km
LOAD: 80 vol.
- Kassel-Wilhelmshöhe | 80 vol.
LOAD: 300 vol.
- München Hbf | 65 vol.
- Ulm Hbf | 45 vol.
- Stuttgart Hbf | 100 vol.
- Karlsruhe Hbf | 35 vol.
- Frankfurt Hbf | 25 vol.
- Würzburg Hbf | 30 vol.
LOAD: 295 vol.
- Dresden Hbf | 35 vol.
- Leipzig Hbf | 80 vol.
- Hannover Hbf | 95 vol.
- Bremen Hbf | 85 vol.
LOAD: 295 vol.
- Dortmund Hbf | 60 vol.
- Köln Hbf | 65 vol.
- Aachen Hbf | 90 vol.
- Osnabrück Hbf | 30 vol.
- Hamburg Hbf | 30 vol.
- Kiel Hbf | 20 vol.
LOAD: 300 vol.
- Mainz Hbf | 95 vol.
- Mannheim Hbf | 70 vol.
- Saarbrücken Hbf | 100 vol.
- Nürnberg Hbf | 35 vol.
LOAD: 80 vol.
- Kassel-Wilhelmshöhe | 80 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: 1270 vol. | Vehicle capacity: 300 vol. Loads: [80, 0, 0, 25, 95, 90, 100, 35, 30, 65, 85, 80, 60, 35, 35, 45, 65, 70, 20, 95, 30, 100, 30, 0] ITERATION Generation: #1 Best cost: 7798.464 | Path: [1, 0, 12, 16, 5, 1, 7, 11, 4, 8, 18, 22, 1, 10, 3, 19, 17, 1, 13, 20, 6, 14, 15, 1, 9, 21, 1] Best cost: 7443.729 | Path: [1, 3, 19, 17, 14, 15, 20, 1, 7, 11, 13, 9, 0, 1, 4, 10, 8, 18, 22, 1, 12, 16, 5, 1, 21, 6, 1] Best cost: 7322.486 | Path: [1, 9, 15, 6, 14, 3, 20, 1, 7, 11, 4, 10, 1, 8, 18, 22, 0, 12, 16, 1, 13, 17, 19, 21, 1, 5, 1] Best cost: 7147.088 | Path: [1, 0, 3, 19, 17, 20, 1, 7, 11, 4, 10, 1, 8, 18, 22, 12, 16, 5, 1, 14, 6, 15, 9, 13, 1, 21, 1] Best cost: 7103.460 | Path: [1, 5, 16, 12, 22, 8, 18, 1, 7, 11, 4, 10, 1, 0, 3, 19, 17, 20, 1, 13, 9, 15, 6, 14, 1, 21, 1] Best cost: 6955.409 | Path: [1, 3, 19, 17, 14, 15, 20, 1, 11, 7, 10, 4, 1, 8, 18, 22, 12, 16, 5, 1, 13, 9, 6, 21, 1, 0, 1] Best cost: 6840.928 | Path: [1, 5, 16, 12, 22, 8, 18, 1, 7, 11, 4, 10, 1, 19, 3, 17, 14, 15, 20, 1, 13, 9, 6, 21, 1, 0, 1] Best cost: 6827.356 | Path: [1, 6, 14, 17, 19, 1, 7, 11, 4, 10, 1, 8, 18, 22, 12, 16, 5, 1, 13, 20, 3, 21, 15, 9, 1, 0, 1] Generation: #3 Best cost: 6778.328 | Path: [1, 5, 16, 12, 22, 8, 18, 1, 7, 11, 0, 4, 1, 20, 3, 19, 17, 14, 15, 1, 13, 9, 6, 21, 1, 10, 1] Generation: #4 Best cost: 6773.774 | Path: [1, 9, 15, 6, 14, 3, 20, 1, 7, 11, 4, 10, 1, 8, 18, 22, 12, 16, 5, 1, 13, 17, 19, 21, 1, 0, 1] OPTIMIZING each tour... Current: [[1, 9, 15, 6, 14, 3, 20, 1], [1, 7, 11, 4, 10, 1], [1, 8, 18, 22, 12, 16, 5, 1], [1, 13, 17, 19, 21, 1], [1, 0, 1]] [3] Cost: 1638.888 to 1607.190 | Optimized: [1, 12, 16, 5, 22, 8, 18, 1] [4] Cost: 1627.347 to 1591.867 | Optimized: [1, 19, 17, 21, 13, 1] ACO RESULTS [1/300 vol./1640.186 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Frankfurt Hbf -> Würzburg Hbf --> Berlin Hbf [2/295 vol./1082.275 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Hannover Hbf -> Bremen Hbf --> Berlin Hbf [3/295 vol./1607.190 km] Berlin Hbf -> Dortmund Hbf -> Köln Hbf -> Aachen Hbf -> Osnabrück Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [4/300 vol./1591.867 km] Berlin Hbf -> Mainz Hbf -> Mannheim Hbf -> Saarbrücken Hbf -> Nürnberg Hbf --> Berlin Hbf [5/ 80 vol./ 785.078 km] Berlin Hbf -> Kassel-Wilhelmshöhe --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 6706.596 km.