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 (50 vol.)
- Düsseldorf Hbf (25 vol.)
- Frankfurt Hbf (40 vol.)
- Hannover Hbf (95 vol.)
- Aachen Hbf (60 vol.)
- Stuttgart Hbf (75 vol.)
- Dresden Hbf (45 vol.)
- Hamburg Hbf (50 vol.)
- München Hbf (25 vol.)
- Bremen Hbf (45 vol.)
- Leipzig Hbf (70 vol.)
- Dortmund Hbf (20 vol.)
- Nürnberg Hbf (30 vol.)
- Ulm Hbf (35 vol.)
- Köln Hbf (20 vol.)
- Mannheim Hbf (25 vol.)
- Kiel Hbf (55 vol.)
- Mainz Hbf (80 vol.)
- Würzburg Hbf (30 vol.)
- Saarbrücken Hbf (50 vol.)
- Osnabrück Hbf (85 vol.)
- Freiburg Hbf (90 vol.)
Tour 1
COST: 1438.037 km
LOAD: 295 vol.
- Mainz Hbf | 80 vol.
- Frankfurt Hbf | 40 vol.
- Würzburg Hbf | 30 vol.
- Nürnberg Hbf | 30 vol.
- Leipzig Hbf | 70 vol.
- Dresden Hbf | 45 vol.
Tour 2
COST: 1263.139 km
LOAD: 295 vol.
- Kassel-Wilhelmshöhe | 50 vol.
- Hannover Hbf | 95 vol.
- Bremen Hbf | 45 vol.
- Hamburg Hbf | 50 vol.
- Kiel Hbf | 55 vol.
Tour 3
COST: 1989.515 km
LOAD: 300 vol.
- München Hbf | 25 vol.
- Ulm Hbf | 35 vol.
- Stuttgart Hbf | 75 vol.
- Freiburg Hbf | 90 vol.
- Saarbrücken Hbf | 50 vol.
- Mannheim Hbf | 25 vol.
Tour 4
COST: 1341.989 km
LOAD: 210 vol.
- Köln Hbf | 20 vol.
- Aachen Hbf | 60 vol.
- Düsseldorf Hbf | 25 vol.
- Dortmund Hbf | 20 vol.
- Osnabrück Hbf | 85 vol.
LOAD: 295 vol.
- Mainz Hbf | 80 vol.
- Frankfurt Hbf | 40 vol.
- Würzburg Hbf | 30 vol.
- Nürnberg Hbf | 30 vol.
- Leipzig Hbf | 70 vol.
- Dresden Hbf | 45 vol.
LOAD: 295 vol.
- Kassel-Wilhelmshöhe | 50 vol.
- Hannover Hbf | 95 vol.
- Bremen Hbf | 45 vol.
- Hamburg Hbf | 50 vol.
- Kiel Hbf | 55 vol.
LOAD: 300 vol.
- München Hbf | 25 vol.
- Ulm Hbf | 35 vol.
- Stuttgart Hbf | 75 vol.
- Freiburg Hbf | 90 vol.
- Saarbrücken Hbf | 50 vol.
- Mannheim Hbf | 25 vol.
LOAD: 210 vol.
- Köln Hbf | 20 vol.
- Aachen Hbf | 60 vol.
- Düsseldorf Hbf | 25 vol.
- Dortmund Hbf | 20 vol.
- Osnabrück Hbf | 85 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: 1100 vol. | Vehicle capacity: 300 vol. Loads: [50, 0, 25, 40, 95, 60, 75, 45, 50, 25, 45, 70, 20, 30, 0, 35, 20, 25, 55, 80, 30, 50, 85, 90] ITERATION Generation: #1 Best cost: 7129.784 | Path: [1, 0, 12, 2, 16, 5, 19, 3, 1, 7, 11, 4, 10, 20, 1, 8, 18, 22, 13, 9, 15, 1, 17, 21, 23, 6, 1] Best cost: 6939.823 | Path: [1, 2, 16, 12, 22, 10, 8, 18, 1, 7, 11, 4, 0, 3, 1, 20, 13, 9, 15, 6, 21, 17, 1, 19, 23, 5, 1] Best cost: 6909.618 | Path: [1, 11, 7, 13, 20, 3, 19, 1, 8, 18, 4, 10, 12, 2, 1, 0, 22, 16, 5, 17, 21, 1, 9, 15, 6, 23, 1] Best cost: 6778.361 | Path: [1, 3, 19, 17, 21, 6, 20, 1, 11, 7, 13, 9, 15, 23, 1, 4, 22, 12, 2, 16, 10, 1, 8, 18, 0, 5, 1] Best cost: 6773.351 | Path: [1, 18, 8, 10, 4, 12, 2, 1, 11, 7, 13, 20, 6, 15, 1, 0, 22, 16, 5, 19, 1, 3, 17, 21, 23, 9, 1] Best cost: 6741.067 | Path: [1, 4, 10, 22, 12, 2, 16, 1, 11, 7, 13, 20, 3, 19, 1, 8, 18, 0, 17, 21, 5, 1, 9, 15, 6, 23, 1] Best cost: 6715.391 | Path: [1, 8, 18, 10, 4, 12, 2, 1, 11, 7, 13, 20, 3, 19, 1, 0, 22, 16, 5, 21, 17, 1, 9, 15, 6, 23, 1] Best cost: 6676.409 | Path: [1, 22, 12, 2, 16, 5, 3, 17, 9, 1, 11, 7, 13, 20, 15, 6, 1, 8, 18, 10, 4, 0, 1, 19, 21, 23, 1] Best cost: 6634.743 | Path: [1, 11, 7, 13, 20, 3, 19, 1, 4, 22, 10, 8, 12, 1, 17, 21, 23, 6, 15, 9, 1, 0, 2, 16, 5, 18, 1] Best cost: 6631.199 | Path: [1, 18, 8, 10, 4, 0, 1, 7, 11, 9, 15, 6, 17, 16, 1, 22, 12, 2, 5, 19, 20, 1, 13, 3, 21, 23, 1] Best cost: 6602.553 | Path: [1, 11, 7, 13, 20, 3, 19, 1, 8, 18, 10, 22, 12, 2, 16, 1, 4, 0, 5, 21, 17, 1, 9, 15, 6, 23, 1] Best cost: 6569.525 | Path: [1, 12, 2, 16, 5, 19, 3, 17, 20, 1, 11, 7, 13, 9, 15, 6, 1, 18, 8, 10, 4, 0, 1, 22, 23, 21, 1] Best cost: 6542.676 | Path: [1, 21, 17, 19, 3, 20, 6, 1, 11, 7, 13, 9, 15, 23, 1, 8, 18, 10, 4, 0, 1, 22, 12, 2, 16, 5, 1] Best cost: 6321.506 | Path: [1, 3, 19, 17, 21, 6, 20, 1, 11, 7, 13, 9, 15, 23, 1, 8, 18, 10, 4, 0, 1, 22, 12, 2, 16, 5, 1] Best cost: 6215.250 | Path: [1, 8, 18, 10, 4, 0, 1, 11, 7, 13, 20, 3, 19, 1, 9, 15, 6, 17, 21, 23, 1, 22, 12, 2, 16, 5, 1] Generation: #3 Best cost: 6204.421 | Path: [1, 18, 8, 10, 4, 0, 1, 11, 7, 13, 20, 3, 19, 1, 9, 15, 6, 17, 21, 23, 1, 22, 12, 2, 16, 5, 1] Generation: #5 Best cost: 6119.526 | Path: [1, 17, 21, 23, 6, 15, 9, 1, 11, 7, 13, 20, 3, 19, 1, 8, 18, 10, 4, 0, 1, 22, 12, 2, 16, 5, 1] Generation: #8 Best cost: 6108.098 | Path: [1, 11, 7, 13, 20, 3, 19, 1, 8, 18, 10, 4, 0, 1, 9, 15, 6, 23, 21, 17, 1, 22, 12, 2, 16, 5, 1] OPTIMIZING each tour... Current: [[1, 11, 7, 13, 20, 3, 19, 1], [1, 8, 18, 10, 4, 0, 1], [1, 9, 15, 6, 23, 21, 17, 1], [1, 22, 12, 2, 16, 5, 1]] [1] Cost: 1470.682 to 1438.037 | Optimized: [1, 19, 3, 20, 13, 11, 7, 1] [2] Cost: 1282.400 to 1263.139 | Optimized: [1, 0, 4, 10, 8, 18, 1] [4] Cost: 1365.501 to 1341.989 | Optimized: [1, 16, 5, 2, 12, 22, 1] ACO RESULTS [1/295 vol./1438.037 km] Berlin Hbf -> Mainz Hbf -> Frankfurt Hbf -> Würzburg Hbf -> Nürnberg Hbf -> Leipzig Hbf -> Dresden Hbf --> Berlin Hbf [2/295 vol./1263.139 km] Berlin Hbf -> Kassel-Wilhelmshöhe -> Hannover Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [3/300 vol./1989.515 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Mannheim Hbf --> Berlin Hbf [4/210 vol./1341.989 km] Berlin Hbf -> Köln Hbf -> Aachen Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 6032.680 km.