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: 21 customers
- Kassel-Wilhelmshöhe (80 vol.)
- Düsseldorf Hbf (20 vol.)
- Frankfurt Hbf (90 vol.)
- Hannover Hbf (85 vol.)
- Aachen Hbf (80 vol.)
- Stuttgart Hbf (50 vol.)
- Dresden Hbf (95 vol.)
- Hamburg Hbf (95 vol.)
- München Hbf (60 vol.)
- Bremen Hbf (40 vol.)
- Leipzig Hbf (80 vol.)
- Nürnberg Hbf (30 vol.)
- Karlsruhe Hbf (80 vol.)
- Ulm Hbf (40 vol.)
- Köln Hbf (65 vol.)
- Mannheim Hbf (65 vol.)
- Mainz Hbf (25 vol.)
- Würzburg Hbf (70 vol.)
- Saarbrücken Hbf (90 vol.)
- Osnabrück Hbf (60 vol.)
- Freiburg Hbf (20 vol.)
Tour 1
COST: 1980.029 km
LOAD: 300 vol.
- Mainz Hbf | 25 vol.
- Freiburg Hbf | 20 vol.
- Saarbrücken Hbf | 90 vol.
- Aachen Hbf | 80 vol.
- Köln Hbf | 65 vol.
- Düsseldorf Hbf | 20 vol.
Tour 2
COST: 1187.501 km
LOAD: 275 vol.
- Würzburg Hbf | 70 vol.
- Nürnberg Hbf | 30 vol.
- Leipzig Hbf | 80 vol.
- Dresden Hbf | 95 vol.
Tour 3
COST: 947.647 km
LOAD: 280 vol.
- Hannover Hbf | 85 vol.
- Osnabrück Hbf | 60 vol.
- Bremen Hbf | 40 vol.
- Hamburg Hbf | 95 vol.
Tour 4
COST: 1439.77 km
LOAD: 285 vol.
- Stuttgart Hbf | 50 vol.
- Mannheim Hbf | 65 vol.
- Frankfurt Hbf | 90 vol.
- Kassel-Wilhelmshöhe | 80 vol.
Tour 5
COST: 1555.569 km
LOAD: 180 vol.
- München Hbf | 60 vol.
- Ulm Hbf | 40 vol.
- Karlsruhe Hbf | 80 vol.
LOAD: 300 vol.
- Mainz Hbf | 25 vol.
- Freiburg Hbf | 20 vol.
- Saarbrücken Hbf | 90 vol.
- Aachen Hbf | 80 vol.
- Köln Hbf | 65 vol.
- Düsseldorf Hbf | 20 vol.
LOAD: 275 vol.
- Würzburg Hbf | 70 vol.
- Nürnberg Hbf | 30 vol.
- Leipzig Hbf | 80 vol.
- Dresden Hbf | 95 vol.
LOAD: 280 vol.
- Hannover Hbf | 85 vol.
- Osnabrück Hbf | 60 vol.
- Bremen Hbf | 40 vol.
- Hamburg Hbf | 95 vol.
LOAD: 285 vol.
- Stuttgart Hbf | 50 vol.
- Mannheim Hbf | 65 vol.
- Frankfurt Hbf | 90 vol.
- Kassel-Wilhelmshöhe | 80 vol.
LOAD: 180 vol.
- München Hbf | 60 vol.
- Ulm Hbf | 40 vol.
- Karlsruhe Hbf | 80 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: 1320 vol. | Vehicle capacity: 300 vol. Loads: [80, 0, 20, 90, 85, 80, 50, 95, 95, 60, 40, 80, 0, 30, 80, 40, 65, 65, 0, 25, 70, 90, 60, 20] ITERATION Generation: #1 Best cost: 8279.532 | Path: [1, 0, 22, 10, 8, 2, 1, 11, 7, 13, 20, 19, 1, 4, 3, 17, 6, 1, 16, 5, 21, 23, 15, 1, 14, 9, 1] Best cost: 7726.227 | Path: [1, 2, 16, 5, 19, 3, 23, 1, 11, 7, 4, 10, 1, 8, 22, 0, 13, 1, 9, 15, 6, 14, 17, 1, 20, 21, 1] Best cost: 7367.433 | Path: [1, 3, 19, 17, 14, 23, 2, 1, 11, 7, 9, 15, 1, 8, 10, 22, 4, 1, 13, 20, 6, 21, 1, 0, 16, 5, 1] Best cost: 7293.508 | Path: [1, 2, 16, 5, 21, 19, 23, 1, 7, 11, 13, 20, 1, 8, 10, 22, 4, 1, 0, 3, 17, 6, 1, 9, 15, 14, 1] Generation: #2 Best cost: 7182.521 | Path: [1, 2, 16, 5, 21, 19, 23, 1, 11, 7, 13, 20, 1, 8, 10, 4, 22, 1, 9, 15, 6, 14, 17, 1, 0, 3, 1] Best cost: 7170.518 | Path: [1, 16, 2, 5, 21, 23, 19, 1, 11, 7, 13, 20, 1, 8, 10, 22, 4, 1, 0, 3, 17, 6, 1, 9, 15, 14, 1] OPTIMIZING each tour... Current: [[1, 16, 2, 5, 21, 23, 19, 1], [1, 11, 7, 13, 20, 1], [1, 8, 10, 22, 4, 1], [1, 0, 3, 17, 6, 1], [1, 9, 15, 14, 1]] [1] Cost: 2006.035 to 1980.029 | Optimized: [1, 19, 23, 21, 5, 16, 2, 1] [2] Cost: 1216.319 to 1187.501 | Optimized: [1, 20, 13, 11, 7, 1] [3] Cost: 951.526 to 947.647 | Optimized: [1, 4, 22, 10, 8, 1] [4] Cost: 1441.069 to 1439.770 | Optimized: [1, 6, 17, 3, 0, 1] ACO RESULTS [1/300 vol./1980.029 km] Berlin Hbf -> Mainz Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Köln Hbf -> Düsseldorf Hbf --> Berlin Hbf [2/275 vol./1187.501 km] Berlin Hbf -> Würzburg Hbf -> Nürnberg Hbf -> Leipzig Hbf -> Dresden Hbf --> Berlin Hbf [3/280 vol./ 947.647 km] Berlin Hbf -> Hannover Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf --> Berlin Hbf [4/285 vol./1439.770 km] Berlin Hbf -> Stuttgart Hbf -> Mannheim Hbf -> Frankfurt Hbf -> Kassel-Wilhelmshöhe --> Berlin Hbf [5/180 vol./1555.569 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Karlsruhe Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 7110.516 km.