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: 16 customers
- Berlin Hbf (40 vol.)
- Stuttgart Hbf (30 vol.)
- Dresden Hbf (100 vol.)
- Hamburg Hbf (75 vol.)
- München Hbf (20 vol.)
- Bremen Hbf (100 vol.)
- Nürnberg Hbf (80 vol.)
- Karlsruhe Hbf (20 vol.)
- Ulm Hbf (20 vol.)
- Köln Hbf (55 vol.)
- Mannheim Hbf (65 vol.)
- Kiel Hbf (30 vol.)
- Würzburg Hbf (70 vol.)
- Saarbrücken Hbf (60 vol.)
- Osnabrück Hbf (100 vol.)
- Freiburg Hbf (85 vol.)
Tour 1
COST: 1796.144 km
LOAD: 380 vol.
- Berlin Hbf | 40 vol.
- Dresden Hbf | 100 vol.
- Nürnberg Hbf | 80 vol.
- München Hbf | 20 vol.
- Ulm Hbf | 20 vol.
- Stuttgart Hbf | 30 vol.
- Karlsruhe Hbf | 20 vol.
- Würzburg Hbf | 70 vol.
Tour 2
COST: 1206.437 km
LOAD: 360 vol.
- Hamburg Hbf | 75 vol.
- Kiel Hbf | 30 vol.
- Bremen Hbf | 100 vol.
- Osnabrück Hbf | 100 vol.
- Köln Hbf | 55 vol.
Tour 3
COST: 1055.393 km
LOAD: 210 vol.
- Mannheim Hbf | 65 vol.
- Freiburg Hbf | 85 vol.
- Saarbrücken Hbf | 60 vol.
LOAD: 380 vol.
- Berlin Hbf | 40 vol.
- Dresden Hbf | 100 vol.
- Nürnberg Hbf | 80 vol.
- München Hbf | 20 vol.
- Ulm Hbf | 20 vol.
- Stuttgart Hbf | 30 vol.
- Karlsruhe Hbf | 20 vol.
- Würzburg Hbf | 70 vol.
LOAD: 360 vol.
- Hamburg Hbf | 75 vol.
- Kiel Hbf | 30 vol.
- Bremen Hbf | 100 vol.
- Osnabrück Hbf | 100 vol.
- Köln Hbf | 55 vol.
LOAD: 210 vol.
- Mannheim Hbf | 65 vol.
- Freiburg Hbf | 85 vol.
- Saarbrücken Hbf | 60 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, 40, 0, 0, 0, 0, 30, 100, 75, 20, 100, 0, 0, 80, 20, 20, 55, 65, 30, 0, 70, 60, 100, 85] ITERATION Generation: #1 Best cost: 5144.065 | Path: [0, 1, 7, 13, 20, 14, 17, 15, 0, 22, 10, 8, 18, 16, 6, 0, 21, 23, 9, 0] Best cost: 4677.217 | Path: [0, 6, 14, 17, 23, 21, 16, 20, 0, 22, 10, 8, 18, 1, 9, 15, 0, 13, 7, 0] Best cost: 4605.619 | Path: [0, 7, 1, 8, 18, 10, 16, 0, 22, 17, 14, 6, 15, 9, 13, 21, 0, 20, 23, 0] Best cost: 4343.582 | Path: [0, 13, 20, 14, 6, 15, 9, 7, 1, 0, 22, 10, 8, 18, 16, 0, 17, 21, 23, 0] Best cost: 4313.043 | Path: [0, 7, 1, 8, 18, 10, 16, 0, 22, 20, 13, 9, 15, 6, 14, 21, 0, 17, 23, 0] Best cost: 4230.152 | Path: [0, 1, 7, 20, 13, 9, 15, 6, 14, 0, 22, 10, 8, 18, 16, 0, 17, 21, 23, 0] OPTIMIZING each tour... Current: [[0, 1, 7, 20, 13, 9, 15, 6, 14, 0], [0, 22, 10, 8, 18, 16, 0], [0, 17, 21, 23, 0]] [1] Cost: 1885.707 to 1796.144 | Optimized: [0, 1, 7, 13, 9, 15, 6, 14, 20, 0] [2] Cost: 1266.195 to 1206.437 | Optimized: [0, 8, 18, 10, 22, 16, 0] [3] Cost: 1078.250 to 1055.393 | Optimized: [0, 17, 23, 21, 0] ACO RESULTS [1/380 vol./1796.144 km] Kassel-Wilhelmshöhe -> Berlin Hbf -> Dresden Hbf -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Würzburg Hbf --> Kassel-Wilhelmshöhe [2/360 vol./1206.437 km] Kassel-Wilhelmshöhe -> Hamburg Hbf -> Kiel Hbf -> Bremen Hbf -> Osnabrück Hbf -> Köln Hbf --> Kassel-Wilhelmshöhe [3/210 vol./1055.393 km] Kassel-Wilhelmshöhe -> Mannheim Hbf -> Freiburg Hbf -> Saarbrücken Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 4057.974 km.