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: 15 customers
- Berlin Hbf (75 vol.)
- Frankfurt Hbf (80 vol.)
- Hannover Hbf (35 vol.)
- Aachen Hbf (70 vol.)
- Hamburg Hbf (20 vol.)
- München Hbf (90 vol.)
- Dortmund Hbf (35 vol.)
- Nürnberg Hbf (75 vol.)
- Karlsruhe Hbf (100 vol.)
- Ulm Hbf (40 vol.)
- Köln Hbf (75 vol.)
- Mannheim Hbf (90 vol.)
- Kiel Hbf (55 vol.)
- Saarbrücken Hbf (85 vol.)
- Osnabrück Hbf (25 vol.)
Tour 1
COST: 1124.889 km
LOAD: 395 vol.
- Nürnberg Hbf | 75 vol.
- München Hbf | 90 vol.
- Ulm Hbf | 40 vol.
- Karlsruhe Hbf | 100 vol.
- Mannheim Hbf | 90 vol.
Tour 2
COST: 1728.535 km
LOAD: 390 vol.
- Köln Hbf | 75 vol.
- Aachen Hbf | 70 vol.
- Dortmund Hbf | 35 vol.
- Osnabrück Hbf | 25 vol.
- Hannover Hbf | 35 vol.
- Hamburg Hbf | 20 vol.
- Kiel Hbf | 55 vol.
- Berlin Hbf | 75 vol.
Tour 3
COST: 758.568 km
LOAD: 165 vol.
- Frankfurt Hbf | 80 vol.
- Saarbrücken Hbf | 85 vol.
LOAD: 395 vol.
- Nürnberg Hbf | 75 vol.
- München Hbf | 90 vol.
- Ulm Hbf | 40 vol.
- Karlsruhe Hbf | 100 vol.
- Mannheim Hbf | 90 vol.
LOAD: 390 vol.
- Köln Hbf | 75 vol.
- Aachen Hbf | 70 vol.
- Dortmund Hbf | 35 vol.
- Osnabrück Hbf | 25 vol.
- Hannover Hbf | 35 vol.
- Hamburg Hbf | 20 vol.
- Kiel Hbf | 55 vol.
- Berlin Hbf | 75 vol.
LOAD: 165 vol.
- Frankfurt Hbf | 80 vol.
- Saarbrücken 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: 950 vol. | Vehicle capacity: 400 vol. Loads: [0, 75, 0, 80, 35, 70, 0, 0, 20, 90, 0, 0, 35, 75, 100, 40, 75, 90, 55, 0, 0, 85, 25, 0] ITERATION Generation: #1 Best cost: 4614.948 | Path: [0, 1, 13, 9, 15, 14, 8, 0, 22, 12, 16, 5, 21, 17, 0, 3, 4, 18, 0] Best cost: 4208.157 | Path: [0, 3, 17, 14, 21, 12, 0, 22, 4, 8, 18, 1, 13, 9, 0, 16, 5, 15, 0] Best cost: 3891.315 | Path: [0, 5, 16, 12, 22, 4, 8, 18, 1, 0, 3, 17, 14, 21, 15, 0, 13, 9, 0] Best cost: 3888.584 | Path: [0, 16, 5, 12, 22, 4, 8, 18, 1, 0, 3, 17, 14, 21, 15, 0, 13, 9, 0] Best cost: 3625.543 | Path: [0, 17, 14, 15, 9, 13, 0, 12, 16, 5, 22, 4, 8, 18, 1, 0, 3, 21, 0] Best cost: 3614.834 | Path: [0, 13, 9, 15, 14, 17, 0, 12, 16, 5, 22, 4, 8, 18, 1, 0, 3, 21, 0] OPTIMIZING each tour... Current: [[0, 13, 9, 15, 14, 17, 0], [0, 12, 16, 5, 22, 4, 8, 18, 1, 0], [0, 3, 21, 0]] [2] Cost: 1731.377 to 1728.535 | Optimized: [0, 16, 5, 12, 22, 4, 8, 18, 1, 0] ACO RESULTS [1/395 vol./1124.889 km] Kassel-Wilhelmshöhe -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Karlsruhe Hbf -> Mannheim Hbf --> Kassel-Wilhelmshöhe [2/390 vol./1728.535 km] Kassel-Wilhelmshöhe -> Köln Hbf -> Aachen Hbf -> Dortmund Hbf -> Osnabrück Hbf -> Hannover Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf --> Kassel-Wilhelmshöhe [3/165 vol./ 758.568 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Saarbrücken Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3611.992 km.