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: 17 customers
- Düsseldorf Hbf (20 vol.)
- Frankfurt Hbf (55 vol.)
- Hannover Hbf (20 vol.)
- Aachen Hbf (100 vol.)
- Stuttgart Hbf (90 vol.)
- Dresden Hbf (85 vol.)
- Hamburg Hbf (55 vol.)
- Bremen Hbf (45 vol.)
- Leipzig Hbf (50 vol.)
- Dortmund Hbf (55 vol.)
- Nürnberg Hbf (65 vol.)
- Köln Hbf (65 vol.)
- Mannheim Hbf (25 vol.)
- Mainz Hbf (60 vol.)
- Würzburg Hbf (30 vol.)
- Saarbrücken Hbf (65 vol.)
- Osnabrück Hbf (35 vol.)
Tour 1
COST: 1185.841 km
LOAD: 390 vol.
- Würzburg Hbf | 30 vol.
- Nürnberg Hbf | 65 vol.
- Stuttgart Hbf | 90 vol.
- Mannheim Hbf | 25 vol.
- Saarbrücken Hbf | 65 vol.
- Mainz Hbf | 60 vol.
- Frankfurt Hbf | 55 vol.
Tour 2
COST: 1164.248 km
LOAD: 395 vol.
- Köln Hbf | 65 vol.
- Aachen Hbf | 100 vol.
- Düsseldorf Hbf | 20 vol.
- Dortmund Hbf | 55 vol.
- Osnabrück Hbf | 35 vol.
- Bremen Hbf | 45 vol.
- Hamburg Hbf | 55 vol.
- Hannover Hbf | 20 vol.
Tour 3
COST: 758.587 km
LOAD: 135 vol.
- Dresden Hbf | 85 vol.
- Leipzig Hbf | 50 vol.
LOAD: 390 vol.
- Würzburg Hbf | 30 vol.
- Nürnberg Hbf | 65 vol.
- Stuttgart Hbf | 90 vol.
- Mannheim Hbf | 25 vol.
- Saarbrücken Hbf | 65 vol.
- Mainz Hbf | 60 vol.
- Frankfurt Hbf | 55 vol.
LOAD: 395 vol.
- Köln Hbf | 65 vol.
- Aachen Hbf | 100 vol.
- Düsseldorf Hbf | 20 vol.
- Dortmund Hbf | 55 vol.
- Osnabrück Hbf | 35 vol.
- Bremen Hbf | 45 vol.
- Hamburg Hbf | 55 vol.
- Hannover Hbf | 20 vol.
LOAD: 135 vol.
- Dresden Hbf | 85 vol.
- Leipzig Hbf | 50 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: 920 vol. | Vehicle capacity: 400 vol. Loads: [0, 0, 20, 55, 20, 100, 90, 85, 55, 0, 45, 50, 55, 65, 0, 0, 65, 25, 0, 60, 30, 65, 35, 0] ITERATION Generation: #1 Best cost: 3339.877 | Path: [0, 2, 16, 5, 12, 22, 4, 10, 8, 0, 3, 19, 17, 21, 6, 20, 13, 0, 11, 7, 0] Best cost: 3332.025 | Path: [0, 5, 16, 2, 12, 22, 4, 10, 8, 0, 3, 19, 17, 21, 6, 20, 13, 0, 11, 7, 0] Best cost: 3289.816 | Path: [0, 2, 16, 5, 12, 22, 10, 8, 4, 0, 20, 3, 19, 17, 21, 6, 13, 0, 11, 7, 0] Best cost: 3282.083 | Path: [0, 22, 10, 8, 4, 12, 2, 16, 5, 0, 3, 19, 17, 21, 6, 20, 13, 0, 11, 7, 0] Best cost: 3221.820 | Path: [0, 19, 3, 17, 21, 6, 20, 13, 0, 12, 2, 16, 5, 22, 10, 8, 4, 0, 11, 7, 0] Best cost: 3206.969 | Path: [0, 2, 16, 5, 12, 22, 10, 8, 4, 0, 3, 19, 17, 21, 6, 20, 13, 0, 11, 7, 0] Best cost: 3199.117 | Path: [0, 5, 16, 2, 12, 22, 10, 8, 4, 0, 3, 19, 17, 21, 6, 20, 13, 0, 11, 7, 0] Generation: #2 Best cost: 3196.337 | Path: [0, 3, 19, 17, 21, 6, 20, 13, 0, 12, 2, 16, 5, 22, 10, 8, 4, 0, 7, 11, 0] Generation: #3 Best cost: 3175.162 | Path: [0, 13, 20, 6, 17, 21, 19, 3, 0, 12, 2, 16, 5, 22, 10, 8, 4, 0, 11, 7, 0] Generation: #4 Best cost: 3160.118 | Path: [0, 3, 19, 17, 21, 6, 13, 20, 0, 12, 2, 16, 5, 22, 10, 8, 4, 0, 11, 7, 0] Best cost: 3131.263 | Path: [0, 20, 13, 6, 17, 21, 19, 3, 0, 12, 2, 16, 5, 22, 10, 8, 4, 0, 11, 7, 0] OPTIMIZING each tour... Current: [[0, 20, 13, 6, 17, 21, 19, 3, 0], [0, 12, 2, 16, 5, 22, 10, 8, 4, 0], [0, 11, 7, 0]] [2] Cost: 1183.779 to 1164.248 | Optimized: [0, 16, 5, 2, 12, 22, 10, 8, 4, 0] [3] Cost: 761.643 to 758.587 | Optimized: [0, 7, 11, 0] ACO RESULTS [1/390 vol./1185.841 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Nürnberg Hbf -> Stuttgart Hbf -> Mannheim Hbf -> Saarbrücken Hbf -> Mainz Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [2/395 vol./1164.248 km] Kassel-Wilhelmshöhe -> Köln Hbf -> Aachen Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Hannover Hbf --> Kassel-Wilhelmshöhe [3/135 vol./ 758.587 km] Kassel-Wilhelmshöhe -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3108.676 km.