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: 21 customers
- Düsseldorf Hbf (80 vol.)
- Frankfurt Hbf (55 vol.)
- Hannover Hbf (85 vol.)
- Aachen Hbf (25 vol.)
- Stuttgart Hbf (40 vol.)
- Dresden Hbf (50 vol.)
- Hamburg Hbf (25 vol.)
- München Hbf (95 vol.)
- Bremen Hbf (100 vol.)
- Leipzig Hbf (85 vol.)
- Dortmund Hbf (70 vol.)
- Nürnberg Hbf (100 vol.)
- Karlsruhe Hbf (35 vol.)
- Köln Hbf (90 vol.)
- Mannheim Hbf (85 vol.)
- Kiel Hbf (65 vol.)
- Mainz Hbf (100 vol.)
- Würzburg Hbf (55 vol.)
- Saarbrücken Hbf (75 vol.)
- Osnabrück Hbf (65 vol.)
- Freiburg Hbf (50 vol.)
Tour 1
COST: 1273.969 km
LOAD: 390 vol.
- Freiburg Hbf | 50 vol.
- Saarbrücken Hbf | 75 vol.
- Aachen Hbf | 25 vol.
- Köln Hbf | 90 vol.
- Düsseldorf Hbf | 80 vol.
- Dortmund Hbf | 70 vol.
Tour 2
COST: 1506.572 km
LOAD: 390 vol.
- Osnabrück Hbf | 65 vol.
- Bremen Hbf | 100 vol.
- Hamburg Hbf | 25 vol.
- Kiel Hbf | 65 vol.
- Hannover Hbf | 85 vol.
- Dresden Hbf | 50 vol.
Tour 3
COST: 833.129 km
LOAD: 370 vol.
- Frankfurt Hbf | 55 vol.
- Mainz Hbf | 100 vol.
- Mannheim Hbf | 85 vol.
- Karlsruhe Hbf | 35 vol.
- Stuttgart Hbf | 40 vol.
- Würzburg Hbf | 55 vol.
Tour 4
COST: 1186.513 km
LOAD: 280 vol.
- Nürnberg Hbf | 100 vol.
- München Hbf | 95 vol.
- Leipzig Hbf | 85 vol.
LOAD: 390 vol.
- Freiburg Hbf | 50 vol.
- Saarbrücken Hbf | 75 vol.
- Aachen Hbf | 25 vol.
- Köln Hbf | 90 vol.
- Düsseldorf Hbf | 80 vol.
- Dortmund Hbf | 70 vol.
LOAD: 390 vol.
- Osnabrück Hbf | 65 vol.
- Bremen Hbf | 100 vol.
- Hamburg Hbf | 25 vol.
- Kiel Hbf | 65 vol.
- Hannover Hbf | 85 vol.
- Dresden Hbf | 50 vol.
LOAD: 370 vol.
- Frankfurt Hbf | 55 vol.
- Mainz Hbf | 100 vol.
- Mannheim Hbf | 85 vol.
- Karlsruhe Hbf | 35 vol.
- Stuttgart Hbf | 40 vol.
- Würzburg Hbf | 55 vol.
LOAD: 280 vol.
- Nürnberg Hbf | 100 vol.
- München Hbf | 95 vol.
- Leipzig 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: [0] Kassel-Wilhelmshöhe | Number of cities: 24 | Total loads: 1430 vol. | Vehicle capacity: 400 vol. Loads: [0, 0, 80, 55, 85, 25, 40, 50, 25, 95, 100, 85, 70, 100, 35, 0, 90, 85, 65, 100, 55, 75, 65, 50] ITERATION Generation: #1 Best cost: 5539.106 | Path: [0, 2, 16, 5, 12, 22, 8, 6, 0, 3, 19, 17, 14, 21, 23, 0, 4, 10, 18, 11, 7, 0, 20, 13, 9, 0] Best cost: 5178.307 | Path: [0, 3, 19, 17, 14, 6, 20, 5, 0, 22, 10, 8, 18, 4, 7, 0, 12, 2, 16, 21, 23, 0, 13, 9, 11, 0] Best cost: 5155.738 | Path: [0, 20, 13, 9, 6, 14, 21, 0, 19, 3, 17, 23, 16, 0, 22, 10, 8, 18, 4, 5, 0, 12, 2, 11, 7, 0] Best cost: 5011.515 | Path: [0, 23, 14, 17, 19, 3, 20, 0, 22, 10, 8, 18, 4, 5, 0, 12, 2, 16, 21, 6, 0, 11, 7, 13, 9, 0] Best cost: 4883.562 | Path: [0, 23, 14, 6, 17, 3, 19, 5, 0, 22, 12, 2, 16, 21, 0, 20, 13, 9, 11, 7, 0, 4, 10, 8, 18, 0] Generation: #2 Best cost: 4876.884 | Path: [0, 22, 10, 8, 18, 4, 7, 0, 12, 2, 16, 5, 3, 20, 0, 19, 17, 14, 6, 23, 21, 0, 13, 9, 11, 0] Generation: #3 Best cost: 4823.299 | Path: [0, 12, 2, 16, 5, 21, 23, 0, 22, 10, 8, 18, 4, 7, 0, 3, 19, 17, 14, 6, 20, 0, 11, 13, 9, 0] OPTIMIZING each tour... Current: [[0, 12, 2, 16, 5, 21, 23, 0], [0, 22, 10, 8, 18, 4, 7, 0], [0, 3, 19, 17, 14, 6, 20, 0], [0, 11, 13, 9, 0]] [1] Cost: 1277.142 to 1273.969 | Optimized: [0, 23, 21, 5, 16, 2, 12, 0] [4] Cost: 1206.456 to 1186.513 | Optimized: [0, 13, 9, 11, 0] ACO RESULTS [1/390 vol./1273.969 km] Kassel-Wilhelmshöhe -> Freiburg Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Köln Hbf -> Düsseldorf Hbf -> Dortmund Hbf --> Kassel-Wilhelmshöhe [2/390 vol./1506.572 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf -> Hannover Hbf -> Dresden Hbf --> Kassel-Wilhelmshöhe [3/370 vol./ 833.129 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Stuttgart Hbf -> Würzburg Hbf --> Kassel-Wilhelmshöhe [4/280 vol./1186.513 km] Kassel-Wilhelmshöhe -> Nürnberg Hbf -> München Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4800.183 km.