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: 14 customers
- Berlin Hbf (75 vol.)
- Düsseldorf Hbf (100 vol.)
- Frankfurt Hbf (20 vol.)
- Aachen Hbf (60 vol.)
- Stuttgart Hbf (85 vol.)
- Dresden Hbf (40 vol.)
- Hamburg Hbf (20 vol.)
- Bremen Hbf (35 vol.)
- Leipzig Hbf (85 vol.)
- Dortmund Hbf (45 vol.)
- Köln Hbf (45 vol.)
- Kiel Hbf (55 vol.)
- Saarbrücken Hbf (80 vol.)
- Osnabrück Hbf (80 vol.)
Tour 1
COST: 1227.244 km
LOAD: 390 vol.
- Düsseldorf Hbf | 100 vol.
- Köln Hbf | 45 vol.
- Aachen Hbf | 60 vol.
- Saarbrücken Hbf | 80 vol.
- Stuttgart Hbf | 85 vol.
- Frankfurt Hbf | 20 vol.
Tour 2
COST: 1446.531 km
LOAD: 390 vol.
- Osnabrück Hbf | 80 vol.
- Bremen Hbf | 35 vol.
- Hamburg Hbf | 20 vol.
- Kiel Hbf | 55 vol.
- Berlin Hbf | 75 vol.
- Dresden Hbf | 40 vol.
- Leipzig Hbf | 85 vol.
Tour 3
COST: 323.232 km
LOAD: 45 vol.
- Dortmund Hbf | 45 vol.
LOAD: 390 vol.
- Düsseldorf Hbf | 100 vol.
- Köln Hbf | 45 vol.
- Aachen Hbf | 60 vol.
- Saarbrücken Hbf | 80 vol.
- Stuttgart Hbf | 85 vol.
- Frankfurt Hbf | 20 vol.
LOAD: 390 vol.
- Osnabrück Hbf | 80 vol.
- Bremen Hbf | 35 vol.
- Hamburg Hbf | 20 vol.
- Kiel Hbf | 55 vol.
- Berlin Hbf | 75 vol.
- Dresden Hbf | 40 vol.
- Leipzig Hbf | 85 vol.
LOAD: 45 vol.
- Dortmund 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: 825 vol. | Vehicle capacity: 400 vol. Loads: [0, 75, 100, 20, 0, 60, 85, 40, 20, 0, 35, 85, 45, 0, 0, 0, 45, 0, 55, 0, 0, 80, 80, 0] ITERATION Generation: #1 Best cost: 4505.188 | Path: [0, 1, 11, 7, 10, 22, 12, 3, 8, 0, 2, 16, 5, 21, 6, 0, 18, 0] Best cost: 3819.055 | Path: [0, 2, 16, 5, 12, 22, 10, 8, 0, 3, 21, 6, 11, 7, 1, 0, 18, 0] Best cost: 3811.203 | Path: [0, 5, 16, 2, 12, 22, 10, 8, 0, 3, 21, 6, 11, 7, 1, 0, 18, 0] Best cost: 3277.029 | Path: [0, 7, 11, 1, 8, 18, 10, 22, 0, 12, 2, 16, 5, 21, 3, 0, 6, 0] Best cost: 3186.402 | Path: [0, 11, 7, 1, 8, 18, 10, 22, 0, 12, 2, 16, 5, 21, 3, 0, 6, 0] Best cost: 3159.385 | Path: [0, 22, 10, 8, 18, 1, 7, 11, 0, 12, 2, 16, 5, 21, 3, 0, 6, 0] Generation: #2 Best cost: 3155.349 | Path: [0, 11, 7, 1, 8, 18, 10, 22, 0, 3, 21, 6, 5, 16, 2, 0, 12, 0] Best cost: 3111.110 | Path: [0, 11, 7, 1, 18, 8, 10, 22, 0, 3, 6, 21, 2, 16, 5, 0, 12, 0] Generation: #5 Best cost: 3095.436 | Path: [0, 3, 6, 21, 5, 16, 2, 0, 22, 10, 8, 18, 1, 11, 7, 0, 12, 0] OPTIMIZING each tour... Current: [[0, 3, 6, 21, 5, 16, 2, 0], [0, 22, 10, 8, 18, 1, 11, 7, 0], [0, 12, 0]] [1] Cost: 1230.661 to 1227.244 | Optimized: [0, 2, 16, 5, 21, 6, 3, 0] [2] Cost: 1541.543 to 1446.531 | Optimized: [0, 22, 10, 8, 18, 1, 7, 11, 0] ACO RESULTS [1/390 vol./1227.244 km] Kassel-Wilhelmshöhe -> Düsseldorf Hbf -> Köln Hbf -> Aachen Hbf -> Saarbrücken Hbf -> Stuttgart Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [2/390 vol./1446.531 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [3/ 45 vol./ 323.232 km] Kassel-Wilhelmshöhe -> Dortmund Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 2997.007 km.