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: 22 customers
- Kassel-Wilhelmshöhe (75 vol.)
- Düsseldorf Hbf (30 vol.)
- Frankfurt Hbf (100 vol.)
- Hannover Hbf (30 vol.)
- Aachen Hbf (35 vol.)
- Stuttgart Hbf (55 vol.)
- Dresden Hbf (45 vol.)
- Hamburg Hbf (40 vol.)
- München Hbf (75 vol.)
- Bremen Hbf (95 vol.)
- Leipzig Hbf (95 vol.)
- Dortmund Hbf (65 vol.)
- Nürnberg Hbf (35 vol.)
- Karlsruhe Hbf (90 vol.)
- Ulm Hbf (65 vol.)
- Köln Hbf (45 vol.)
- Mannheim Hbf (100 vol.)
- Kiel Hbf (100 vol.)
- Mainz Hbf (20 vol.)
- Würzburg Hbf (90 vol.)
- Saarbrücken Hbf (70 vol.)
- Osnabrück Hbf (55 vol.)
Tour 1
COST: 1490.595 km
LOAD: 290 vol.
- Mannheim Hbf | 100 vol.
- Saarbrücken Hbf | 70 vol.
- Mainz Hbf | 20 vol.
- Frankfurt Hbf | 100 vol.
Tour 2
COST: 1378.047 km
LOAD: 295 vol.
- Hannover Hbf | 30 vol.
- Würzburg Hbf | 90 vol.
- Nürnberg Hbf | 35 vol.
- Dresden Hbf | 45 vol.
- Leipzig Hbf | 95 vol.
Tour 3
COST: 1107.833 km
LOAD: 290 vol.
- Osnabrück Hbf | 55 vol.
- Bremen Hbf | 95 vol.
- Hamburg Hbf | 40 vol.
- Kiel Hbf | 100 vol.
Tour 4
COST: 1370.534 km
LOAD: 250 vol.
- Dortmund Hbf | 65 vol.
- Düsseldorf Hbf | 30 vol.
- Köln Hbf | 45 vol.
- Aachen Hbf | 35 vol.
- Kassel-Wilhelmshöhe | 75 vol.
Tour 5
COST: 1571.395 km
LOAD: 285 vol.
- München Hbf | 75 vol.
- Ulm Hbf | 65 vol.
- Stuttgart Hbf | 55 vol.
- Karlsruhe Hbf | 90 vol.
LOAD: 290 vol.
- Mannheim Hbf | 100 vol.
- Saarbrücken Hbf | 70 vol.
- Mainz Hbf | 20 vol.
- Frankfurt Hbf | 100 vol.
LOAD: 295 vol.
- Hannover Hbf | 30 vol.
- Würzburg Hbf | 90 vol.
- Nürnberg Hbf | 35 vol.
- Dresden Hbf | 45 vol.
- Leipzig Hbf | 95 vol.
LOAD: 290 vol.
- Osnabrück Hbf | 55 vol.
- Bremen Hbf | 95 vol.
- Hamburg Hbf | 40 vol.
- Kiel Hbf | 100 vol.
LOAD: 250 vol.
- Dortmund Hbf | 65 vol.
- Düsseldorf Hbf | 30 vol.
- Köln Hbf | 45 vol.
- Aachen Hbf | 35 vol.
- Kassel-Wilhelmshöhe | 75 vol.
LOAD: 285 vol.
- München Hbf | 75 vol.
- Ulm Hbf | 65 vol.
- Stuttgart Hbf | 55 vol.
- Karlsruhe Hbf | 90 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: 1410 vol. | Vehicle capacity: 300 vol. Loads: [75, 0, 30, 100, 30, 35, 55, 45, 40, 75, 95, 95, 65, 35, 90, 65, 45, 100, 100, 20, 90, 70, 55, 0] ITERATION Generation: #1 Best cost: 7771.584 | Path: [1, 0, 22, 10, 8, 4, 1, 7, 11, 20, 13, 19, 1, 18, 2, 16, 12, 5, 1, 9, 15, 6, 14, 1, 17, 3, 21, 1] Best cost: 7714.211 | Path: [1, 4, 10, 22, 12, 2, 19, 1, 7, 11, 0, 16, 5, 1, 8, 18, 20, 13, 1, 3, 17, 14, 1, 9, 15, 6, 21, 1] Best cost: 7684.585 | Path: [1, 5, 16, 2, 12, 22, 4, 8, 1, 11, 7, 20, 6, 1, 18, 10, 0, 19, 1, 13, 9, 15, 14, 1, 21, 17, 3, 1] Best cost: 7515.120 | Path: [1, 9, 13, 20, 3, 1, 11, 7, 0, 12, 19, 1, 18, 8, 10, 22, 1, 4, 2, 16, 5, 21, 14, 1, 15, 6, 17, 1] Best cost: 7485.978 | Path: [1, 15, 6, 14, 21, 19, 1, 7, 11, 0, 12, 1, 4, 10, 22, 16, 2, 5, 1, 8, 18, 20, 13, 1, 3, 17, 9, 1] Best cost: 7313.356 | Path: [1, 19, 3, 17, 21, 1, 11, 7, 8, 18, 1, 4, 10, 22, 12, 2, 1, 0, 5, 16, 20, 13, 1, 6, 14, 15, 9, 1] Best cost: 7218.677 | Path: [1, 0, 12, 2, 16, 5, 19, 4, 1, 11, 7, 20, 13, 1, 8, 18, 10, 22, 1, 15, 6, 14, 21, 1, 3, 17, 9, 1] Best cost: 7090.016 | Path: [1, 11, 7, 13, 20, 19, 1, 8, 18, 10, 22, 1, 4, 0, 12, 2, 16, 5, 1, 9, 15, 6, 14, 1, 3, 17, 21, 1] Best cost: 7074.256 | Path: [1, 21, 19, 3, 17, 1, 11, 7, 13, 20, 4, 1, 8, 18, 10, 22, 1, 0, 12, 2, 16, 5, 1, 9, 15, 6, 14, 1] Best cost: 7048.201 | Path: [1, 0, 12, 2, 16, 5, 19, 4, 1, 11, 7, 20, 13, 1, 8, 18, 10, 22, 1, 9, 15, 6, 14, 1, 3, 17, 21, 1] Best cost: 7011.774 | Path: [1, 19, 3, 17, 21, 1, 11, 7, 13, 20, 4, 1, 8, 18, 10, 22, 1, 0, 12, 2, 16, 5, 1, 9, 15, 6, 14, 1] Best cost: 6994.264 | Path: [1, 3, 19, 17, 21, 1, 7, 11, 13, 20, 4, 1, 8, 18, 10, 22, 1, 0, 12, 2, 16, 5, 1, 6, 14, 15, 9, 1] Generation: #2 Best cost: 6989.348 | Path: [1, 3, 19, 17, 21, 1, 8, 18, 10, 22, 1, 11, 7, 13, 20, 4, 1, 0, 12, 2, 16, 5, 1, 9, 15, 6, 14, 1] Generation: #3 Best cost: 6989.348 | Path: [1, 3, 19, 17, 21, 1, 11, 7, 13, 20, 4, 1, 8, 18, 10, 22, 1, 0, 12, 2, 16, 5, 1, 9, 15, 6, 14, 1] Generation: #5 Best cost: 6987.728 | Path: [1, 12, 2, 16, 5, 21, 19, 13, 1, 7, 11, 4, 10, 1, 8, 18, 22, 0, 1, 9, 15, 6, 14, 1, 3, 17, 20, 1] Best cost: 6978.519 | Path: [1, 3, 19, 17, 21, 1, 11, 7, 13, 20, 4, 1, 18, 8, 10, 22, 1, 0, 12, 2, 16, 5, 1, 9, 15, 6, 14, 1] OPTIMIZING each tour... Current: [[1, 3, 19, 17, 21, 1], [1, 11, 7, 13, 20, 4, 1], [1, 18, 8, 10, 22, 1], [1, 0, 12, 2, 16, 5, 1], [1, 9, 15, 6, 14, 1]] [1] Cost: 1528.452 to 1490.595 | Optimized: [1, 17, 21, 19, 3, 1] [2] Cost: 1384.969 to 1378.047 | Optimized: [1, 4, 20, 13, 7, 11, 1] [3] Cost: 1121.659 to 1107.833 | Optimized: [1, 22, 10, 8, 18, 1] [4] Cost: 1372.044 to 1370.534 | Optimized: [1, 12, 2, 16, 5, 0, 1] ACO RESULTS [1/290 vol./1490.595 km] Berlin Hbf -> Mannheim Hbf -> Saarbrücken Hbf -> Mainz Hbf -> Frankfurt Hbf --> Berlin Hbf [2/295 vol./1378.047 km] Berlin Hbf -> Hannover Hbf -> Würzburg Hbf -> Nürnberg Hbf -> Dresden Hbf -> Leipzig Hbf --> Berlin Hbf [3/290 vol./1107.833 km] Berlin Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [4/250 vol./1370.534 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Aachen Hbf -> Kassel-Wilhelmshöhe --> Berlin Hbf [5/285 vol./1571.395 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 6918.404 km.