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: 20 customers
- Berlin Hbf (35 vol.)
- Düsseldorf Hbf (30 vol.)
- Frankfurt Hbf (40 vol.)
- Hannover Hbf (100 vol.)
- Aachen Hbf (80 vol.)
- Stuttgart Hbf (85 vol.)
- Dresden Hbf (50 vol.)
- Hamburg Hbf (75 vol.)
- München Hbf (55 vol.)
- Bremen Hbf (20 vol.)
- Leipzig Hbf (80 vol.)
- Nürnberg Hbf (80 vol.)
- Karlsruhe Hbf (85 vol.)
- Köln Hbf (100 vol.)
- Mannheim Hbf (40 vol.)
- Mainz Hbf (25 vol.)
- Würzburg Hbf (95 vol.)
- Saarbrücken Hbf (60 vol.)
- Osnabrück Hbf (65 vol.)
- Freiburg Hbf (100 vol.)
Tour 1
COST: 1030.191 km
LOAD: 390 vol.
- Köln Hbf | 100 vol.
- Düsseldorf Hbf | 30 vol.
- Osnabrück Hbf | 65 vol.
- Bremen Hbf | 20 vol.
- Hamburg Hbf | 75 vol.
- Hannover Hbf | 100 vol.
Tour 2
COST: 833.129 km
LOAD: 370 vol.
- Frankfurt Hbf | 40 vol.
- Mainz Hbf | 25 vol.
- Mannheim Hbf | 40 vol.
- Karlsruhe Hbf | 85 vol.
- Stuttgart Hbf | 85 vol.
- Würzburg Hbf | 95 vol.
Tour 3
COST: 1658.531 km
LOAD: 375 vol.
- Nürnberg Hbf | 80 vol.
- München Hbf | 55 vol.
- Freiburg Hbf | 100 vol.
- Saarbrücken Hbf | 60 vol.
- Aachen Hbf | 80 vol.
Tour 4
COST: 976.91 km
LOAD: 165 vol.
- Leipzig Hbf | 80 vol.
- Dresden Hbf | 50 vol.
- Berlin Hbf | 35 vol.
LOAD: 390 vol.
- Köln Hbf | 100 vol.
- Düsseldorf Hbf | 30 vol.
- Osnabrück Hbf | 65 vol.
- Bremen Hbf | 20 vol.
- Hamburg Hbf | 75 vol.
- Hannover Hbf | 100 vol.
LOAD: 370 vol.
- Frankfurt Hbf | 40 vol.
- Mainz Hbf | 25 vol.
- Mannheim Hbf | 40 vol.
- Karlsruhe Hbf | 85 vol.
- Stuttgart Hbf | 85 vol.
- Würzburg Hbf | 95 vol.
LOAD: 375 vol.
- Nürnberg Hbf | 80 vol.
- München Hbf | 55 vol.
- Freiburg Hbf | 100 vol.
- Saarbrücken Hbf | 60 vol.
- Aachen Hbf | 80 vol.
LOAD: 165 vol.
- Leipzig Hbf | 80 vol.
- Dresden Hbf | 50 vol.
- Berlin Hbf | 35 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: 1300 vol. | Vehicle capacity: 400 vol. Loads: [0, 35, 30, 40, 100, 80, 85, 50, 75, 55, 20, 80, 0, 80, 85, 0, 100, 40, 0, 25, 95, 60, 65, 100] ITERATION Generation: #1 Best cost: 5784.874 | Path: [0, 1, 11, 7, 4, 22, 10, 2, 0, 20, 3, 19, 17, 14, 6, 0, 16, 5, 21, 23, 9, 0, 8, 13, 0] Best cost: 5069.067 | Path: [0, 2, 16, 5, 19, 3, 17, 14, 0, 11, 7, 1, 4, 10, 8, 0, 22, 21, 23, 6, 13, 0, 20, 9, 0] Best cost: 4973.243 | Path: [0, 23, 14, 17, 3, 19, 20, 0, 22, 4, 10, 8, 1, 11, 0, 2, 16, 5, 21, 6, 0, 7, 13, 9, 0] Best cost: 4896.934 | Path: [0, 4, 10, 8, 1, 11, 7, 3, 0, 22, 2, 16, 5, 21, 17, 19, 0, 20, 13, 9, 6, 14, 0, 23, 0] Best cost: 4894.535 | Path: [0, 11, 7, 1, 8, 10, 4, 2, 0, 22, 16, 5, 3, 19, 17, 0, 20, 13, 9, 6, 14, 0, 21, 23, 0] Best cost: 4765.725 | Path: [0, 4, 10, 22, 2, 16, 5, 0, 3, 19, 17, 14, 6, 20, 0, 8, 1, 7, 11, 13, 9, 0, 21, 23, 0] Best cost: 4713.561 | Path: [0, 4, 10, 8, 22, 2, 16, 0, 3, 19, 17, 14, 6, 23, 0, 20, 13, 9, 21, 5, 0, 11, 7, 1, 0] Best cost: 4657.658 | Path: [0, 8, 10, 4, 22, 2, 16, 0, 3, 19, 17, 14, 6, 20, 0, 5, 21, 23, 9, 13, 0, 11, 7, 1, 0] Generation: #2 Best cost: 4610.503 | Path: [0, 22, 10, 8, 4, 2, 16, 0, 3, 19, 17, 14, 6, 20, 0, 5, 21, 23, 9, 13, 0, 11, 7, 1, 0] Generation: #3 Best cost: 4607.517 | Path: [0, 4, 10, 8, 22, 2, 16, 0, 3, 19, 17, 14, 6, 20, 0, 5, 21, 23, 9, 13, 0, 11, 7, 1, 0] Generation: #5 Best cost: 4597.032 | Path: [0, 4, 10, 8, 22, 16, 2, 0, 3, 19, 17, 14, 6, 20, 0, 13, 9, 23, 21, 5, 0, 11, 7, 1, 0] Generation: #6 Best cost: 4588.637 | Path: [0, 4, 10, 8, 22, 2, 16, 0, 3, 19, 17, 14, 6, 20, 0, 13, 9, 23, 21, 5, 0, 11, 7, 1, 0] Best cost: 4509.771 | Path: [0, 4, 8, 10, 22, 2, 16, 0, 3, 19, 17, 14, 6, 20, 0, 13, 9, 23, 21, 5, 0, 11, 7, 1, 0] OPTIMIZING each tour... Current: [[0, 4, 8, 10, 22, 2, 16, 0], [0, 3, 19, 17, 14, 6, 20, 0], [0, 13, 9, 23, 21, 5, 0], [0, 11, 7, 1, 0]] [1] Cost: 1041.201 to 1030.191 | Optimized: [0, 16, 2, 22, 10, 8, 4, 0] ACO RESULTS [1/390 vol./1030.191 km] Kassel-Wilhelmshöhe -> Köln Hbf -> Düsseldorf Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Hannover Hbf --> Kassel-Wilhelmshöhe [2/370 vol./ 833.129 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Stuttgart Hbf -> Würzburg Hbf --> Kassel-Wilhelmshöhe [3/375 vol./1658.531 km] Kassel-Wilhelmshöhe -> Nürnberg Hbf -> München Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Aachen Hbf --> Kassel-Wilhelmshöhe [4/165 vol./ 976.910 km] Kassel-Wilhelmshöhe -> Leipzig Hbf -> Dresden Hbf -> Berlin Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4498.761 km.