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: 16 customers
- Kassel-Wilhelmshöhe (75 vol.)
- Düsseldorf Hbf (75 vol.)
- Frankfurt Hbf (100 vol.)
- Stuttgart Hbf (30 vol.)
- Hamburg Hbf (35 vol.)
- Bremen Hbf (60 vol.)
- Dortmund Hbf (20 vol.)
- Karlsruhe Hbf (60 vol.)
- Ulm Hbf (20 vol.)
- Köln Hbf (35 vol.)
- Mannheim Hbf (85 vol.)
- Kiel Hbf (35 vol.)
- Mainz Hbf (90 vol.)
- Würzburg Hbf (60 vol.)
- Osnabrück Hbf (35 vol.)
- Freiburg Hbf (55 vol.)
Tour 1
COST: 1490.763 km
LOAD: 295 vol.
- Dortmund Hbf | 20 vol.
- Düsseldorf Hbf | 75 vol.
- Köln Hbf | 35 vol.
- Osnabrück Hbf | 35 vol.
- Bremen Hbf | 60 vol.
- Hamburg Hbf | 35 vol.
- Kiel Hbf | 35 vol.
Tour 2
COST: 1837.139 km
LOAD: 300 vol.
- Würzburg Hbf | 60 vol.
- Ulm Hbf | 20 vol.
- Stuttgart Hbf | 30 vol.
- Karlsruhe Hbf | 60 vol.
- Freiburg Hbf | 55 vol.
- Kassel-Wilhelmshöhe | 75 vol.
Tour 3
COST: 1287.848 km
LOAD: 275 vol.
- Mainz Hbf | 90 vol.
- Mannheim Hbf | 85 vol.
- Frankfurt Hbf | 100 vol.
LOAD: 295 vol.
- Dortmund Hbf | 20 vol.
- Düsseldorf Hbf | 75 vol.
- Köln Hbf | 35 vol.
- Osnabrück Hbf | 35 vol.
- Bremen Hbf | 60 vol.
- Hamburg Hbf | 35 vol.
- Kiel Hbf | 35 vol.
LOAD: 300 vol.
- Würzburg Hbf | 60 vol.
- Ulm Hbf | 20 vol.
- Stuttgart Hbf | 30 vol.
- Karlsruhe Hbf | 60 vol.
- Freiburg Hbf | 55 vol.
- Kassel-Wilhelmshöhe | 75 vol.
LOAD: 275 vol.
- Mainz Hbf | 90 vol.
- Mannheim Hbf | 85 vol.
- Frankfurt Hbf | 100 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: 870 vol. | Vehicle capacity: 300 vol. Loads: [75, 0, 75, 100, 0, 0, 30, 0, 35, 0, 60, 0, 20, 0, 60, 20, 35, 85, 35, 90, 60, 0, 35, 55] ITERATION Generation: #1 Best cost: 5343.158 | Path: [1, 0, 12, 2, 16, 19, 1, 8, 10, 22, 3, 20, 1, 18, 14, 17, 6, 15, 23, 1] Best cost: 4744.513 | Path: [1, 2, 16, 12, 22, 10, 8, 18, 1, 0, 3, 19, 6, 1, 20, 17, 14, 23, 15, 1] Best cost: 4733.929 | Path: [1, 16, 2, 12, 22, 10, 8, 18, 1, 0, 3, 19, 6, 1, 20, 17, 14, 23, 15, 1] Best cost: 4730.815 | Path: [1, 12, 2, 16, 22, 10, 8, 18, 1, 0, 3, 19, 6, 1, 20, 17, 14, 23, 15, 1] Best cost: 4722.844 | Path: [1, 23, 14, 6, 15, 20, 0, 1, 18, 8, 10, 22, 12, 2, 16, 1, 3, 19, 17, 1] Generation: #2 Best cost: 4707.355 | Path: [1, 8, 18, 10, 22, 12, 2, 16, 1, 0, 20, 6, 14, 23, 15, 1, 19, 3, 17, 1] Best cost: 4707.355 | Path: [1, 0, 20, 6, 14, 23, 15, 1, 8, 18, 10, 22, 12, 2, 16, 1, 19, 3, 17, 1] Best cost: 4684.929 | Path: [1, 8, 18, 10, 22, 12, 2, 16, 1, 0, 20, 6, 14, 23, 15, 1, 3, 19, 17, 1] Best cost: 4656.559 | Path: [1, 16, 2, 12, 22, 10, 8, 18, 1, 0, 20, 6, 14, 23, 15, 1, 3, 19, 17, 1] OPTIMIZING each tour... Current: [[1, 16, 2, 12, 22, 10, 8, 18, 1], [1, 0, 20, 6, 14, 23, 15, 1], [1, 3, 19, 17, 1]] [1] Cost: 1493.877 to 1490.763 | Optimized: [1, 12, 2, 16, 22, 10, 8, 18, 1] [2] Cost: 1870.339 to 1837.139 | Optimized: [1, 20, 15, 6, 14, 23, 0, 1] [3] Cost: 1292.343 to 1287.848 | Optimized: [1, 19, 17, 3, 1] ACO RESULTS [1/295 vol./1490.763 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [2/300 vol./1837.139 km] Berlin Hbf -> Würzburg Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Kassel-Wilhelmshöhe --> Berlin Hbf [3/275 vol./1287.848 km] Berlin Hbf -> Mainz Hbf -> Mannheim Hbf -> Frankfurt Hbf --> Berlin Hbf OPTIMIZATION RESULT: 3 tours | 4615.750 km.