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 (55 vol.)
- Düsseldorf Hbf (50 vol.)
- Frankfurt Hbf (25 vol.)
- Aachen Hbf (30 vol.)
- Stuttgart Hbf (80 vol.)
- Dresden Hbf (50 vol.)
- Hamburg Hbf (50 vol.)
- München Hbf (35 vol.)
- Bremen Hbf (90 vol.)
- Leipzig Hbf (75 vol.)
- Dortmund Hbf (35 vol.)
- Nürnberg Hbf (25 vol.)
- Karlsruhe Hbf (70 vol.)
- Ulm Hbf (70 vol.)
- Köln Hbf (65 vol.)
- Mannheim Hbf (60 vol.)
- Mainz Hbf (25 vol.)
- Würzburg Hbf (30 vol.)
- Saarbrücken Hbf (95 vol.)
- Osnabrück Hbf (60 vol.)
- Freiburg Hbf (95 vol.)
Tour 1
COST: 1542.252 km
LOAD: 295 vol.
- Dresden Hbf | 50 vol.
- Leipzig Hbf | 75 vol.
- Würzburg Hbf | 30 vol.
- Stuttgart Hbf | 80 vol.
- Mannheim Hbf | 60 vol.
Tour 2
COST: 1261.592 km
LOAD: 285 vol.
- Dortmund Hbf | 35 vol.
- Düsseldorf Hbf | 50 vol.
- Osnabrück Hbf | 60 vol.
- Bremen Hbf | 90 vol.
- Hamburg Hbf | 50 vol.
Tour 3
COST: 1687.789 km
LOAD: 295 vol.
- Kassel-Wilhelmshöhe | 55 vol.
- Frankfurt Hbf | 25 vol.
- Mainz Hbf | 25 vol.
- Saarbrücken Hbf | 95 vol.
- Aachen Hbf | 30 vol.
- Köln Hbf | 65 vol.
Tour 4
COST: 1830.46 km
LOAD: 295 vol.
- München Hbf | 35 vol.
- Ulm Hbf | 70 vol.
- Karlsruhe Hbf | 70 vol.
- Freiburg Hbf | 95 vol.
- Nürnberg Hbf | 25 vol.
LOAD: 295 vol.
- Dresden Hbf | 50 vol.
- Leipzig Hbf | 75 vol.
- Würzburg Hbf | 30 vol.
- Stuttgart Hbf | 80 vol.
- Mannheim Hbf | 60 vol.
LOAD: 285 vol.
- Dortmund Hbf | 35 vol.
- Düsseldorf Hbf | 50 vol.
- Osnabrück Hbf | 60 vol.
- Bremen Hbf | 90 vol.
- Hamburg Hbf | 50 vol.
LOAD: 295 vol.
- Kassel-Wilhelmshöhe | 55 vol.
- Frankfurt Hbf | 25 vol.
- Mainz Hbf | 25 vol.
- Saarbrücken Hbf | 95 vol.
- Aachen Hbf | 30 vol.
- Köln Hbf | 65 vol.
LOAD: 295 vol.
- München Hbf | 35 vol.
- Ulm Hbf | 70 vol.
- Karlsruhe Hbf | 70 vol.
- Freiburg Hbf | 95 vol.
- Nürnberg Hbf | 25 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: 1170 vol. | Vehicle capacity: 300 vol. Loads: [55, 0, 50, 25, 0, 30, 80, 50, 50, 35, 90, 75, 35, 25, 70, 70, 65, 60, 0, 25, 30, 95, 60, 95] ITERATION Generation: #1 Best cost: 6735.241 | Path: [1, 0, 19, 3, 17, 14, 20, 13, 1, 11, 7, 8, 10, 12, 1, 22, 2, 16, 5, 21, 1, 9, 15, 6, 23, 1] Best cost: 6627.319 | Path: [1, 7, 11, 0, 22, 12, 3, 1, 8, 10, 16, 2, 5, 1, 13, 20, 19, 17, 14, 6, 1, 9, 15, 23, 21, 1] Best cost: 6558.525 | Path: [1, 7, 11, 0, 22, 12, 19, 1, 8, 10, 2, 16, 5, 1, 13, 20, 6, 14, 17, 3, 1, 21, 23, 15, 9, 1] Best cost: 6548.332 | Path: [1, 6, 14, 17, 19, 3, 20, 1, 7, 11, 0, 12, 2, 5, 1, 8, 10, 22, 16, 13, 1, 9, 15, 23, 21, 1] Best cost: 6521.776 | Path: [1, 3, 19, 17, 14, 6, 20, 1, 7, 11, 0, 16, 2, 1, 8, 10, 22, 12, 5, 13, 1, 9, 15, 23, 21, 1] Best cost: 6500.058 | Path: [1, 7, 11, 0, 12, 2, 5, 1, 8, 10, 22, 16, 3, 1, 13, 20, 19, 17, 14, 6, 1, 9, 15, 23, 21, 1] Best cost: 6467.625 | Path: [1, 8, 10, 22, 12, 2, 1, 7, 11, 0, 3, 19, 17, 1, 13, 20, 6, 14, 23, 1, 16, 5, 21, 15, 9, 1] Generation: #2 Best cost: 6422.671 | Path: [1, 7, 11, 0, 12, 2, 5, 1, 8, 10, 22, 16, 19, 1, 3, 17, 14, 6, 20, 13, 1, 9, 15, 23, 21, 1] Generation: #6 Best cost: 6410.276 | Path: [1, 11, 7, 13, 20, 6, 9, 1, 8, 10, 22, 12, 2, 1, 0, 16, 5, 21, 19, 3, 1, 17, 14, 23, 15, 1] Generation: #7 Best cost: 6404.519 | Path: [1, 11, 7, 20, 6, 17, 1, 8, 10, 22, 12, 2, 1, 0, 16, 5, 21, 19, 3, 1, 13, 9, 15, 14, 23, 1] OPTIMIZING each tour... Current: [[1, 11, 7, 20, 6, 17, 1], [1, 8, 10, 22, 12, 2, 1], [1, 0, 16, 5, 21, 19, 3, 1], [1, 13, 9, 15, 14, 23, 1]] [1] Cost: 1578.114 to 1542.252 | Optimized: [1, 7, 11, 20, 6, 17, 1] [2] Cost: 1280.860 to 1261.592 | Optimized: [1, 12, 2, 22, 10, 8, 1] [3] Cost: 1706.569 to 1687.789 | Optimized: [1, 0, 3, 19, 21, 5, 16, 1] [4] Cost: 1838.976 to 1830.460 | Optimized: [1, 9, 15, 14, 23, 13, 1] ACO RESULTS [1/295 vol./1542.252 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Würzburg Hbf -> Stuttgart Hbf -> Mannheim Hbf --> Berlin Hbf [2/285 vol./1261.592 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf --> Berlin Hbf [3/295 vol./1687.789 km] Berlin Hbf -> Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mainz Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Köln Hbf --> Berlin Hbf [4/295 vol./1830.460 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Nürnberg Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 6322.093 km.