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 (85 vol.)
- Hannover Hbf (25 vol.)
- Aachen Hbf (60 vol.)
- Dresden Hbf (85 vol.)
- Hamburg Hbf (95 vol.)
- Leipzig Hbf (70 vol.)
- Dortmund Hbf (45 vol.)
- Nürnberg Hbf (80 vol.)
- Karlsruhe Hbf (70 vol.)
- Mannheim Hbf (55 vol.)
- Kiel Hbf (55 vol.)
- Mainz Hbf (45 vol.)
- Würzburg Hbf (45 vol.)
- Saarbrücken Hbf (95 vol.)
- Osnabrück Hbf (100 vol.)
- Freiburg Hbf (35 vol.)
Tour 1
COST: 1749.349 km
LOAD: 300 vol.
- Mannheim Hbf | 55 vol.
- Karlsruhe Hbf | 70 vol.
- Freiburg Hbf | 35 vol.
- Saarbrücken Hbf | 95 vol.
- Mainz Hbf | 45 vol.
Tour 2
COST: 1187.501 km
LOAD: 280 vol.
- Würzburg Hbf | 45 vol.
- Nürnberg Hbf | 80 vol.
- Leipzig Hbf | 70 vol.
- Dresden Hbf | 85 vol.
Tour 3
COST: 1102.366 km
LOAD: 275 vol.
- Hannover Hbf | 25 vol.
- Osnabrück Hbf | 100 vol.
- Hamburg Hbf | 95 vol.
- Kiel Hbf | 55 vol.
Tour 4
COST: 1339.332 km
LOAD: 190 vol.
- Dortmund Hbf | 45 vol.
- Aachen Hbf | 60 vol.
- Kassel-Wilhelmshöhe | 85 vol.
LOAD: 300 vol.
- Mannheim Hbf | 55 vol.
- Karlsruhe Hbf | 70 vol.
- Freiburg Hbf | 35 vol.
- Saarbrücken Hbf | 95 vol.
- Mainz Hbf | 45 vol.
LOAD: 280 vol.
- Würzburg Hbf | 45 vol.
- Nürnberg Hbf | 80 vol.
- Leipzig Hbf | 70 vol.
- Dresden Hbf | 85 vol.
LOAD: 275 vol.
- Hannover Hbf | 25 vol.
- Osnabrück Hbf | 100 vol.
- Hamburg Hbf | 95 vol.
- Kiel Hbf | 55 vol.
LOAD: 190 vol.
- Dortmund Hbf | 45 vol.
- Aachen Hbf | 60 vol.
- Kassel-Wilhelmshöhe | 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: [1] Berlin Hbf | Number of cities: 24 | Total loads: 1045 vol. | Vehicle capacity: 300 vol. Loads: [85, 0, 0, 0, 25, 60, 0, 85, 95, 0, 0, 70, 45, 80, 70, 0, 0, 55, 55, 45, 45, 95, 100, 35] ITERATION Generation: #1 Best cost: 6213.445 | Path: [1, 0, 22, 12, 5, 1, 11, 7, 13, 20, 1, 8, 18, 4, 19, 17, 1, 21, 14, 23, 1] Best cost: 5764.745 | Path: [1, 7, 11, 0, 12, 1, 4, 22, 8, 18, 1, 13, 20, 19, 17, 14, 1, 5, 21, 23, 1] Best cost: 5602.850 | Path: [1, 19, 17, 14, 21, 23, 1, 8, 18, 4, 22, 1, 7, 11, 13, 20, 1, 0, 12, 5, 1] Best cost: 5463.443 | Path: [1, 17, 14, 23, 21, 19, 1, 11, 7, 13, 20, 1, 22, 4, 8, 18, 1, 0, 12, 5, 1] Best cost: 5452.512 | Path: [1, 17, 14, 23, 21, 19, 1, 7, 11, 13, 20, 1, 18, 8, 4, 0, 1, 5, 12, 22, 1] Generation: #2 Best cost: 5432.200 | Path: [1, 17, 14, 23, 21, 19, 1, 11, 7, 13, 20, 1, 8, 18, 22, 4, 1, 0, 12, 5, 1] OPTIMIZING each tour... Current: [[1, 17, 14, 23, 21, 19, 1], [1, 11, 7, 13, 20, 1], [1, 8, 18, 22, 4, 1], [1, 0, 12, 5, 1]] [2] Cost: 1216.319 to 1187.501 | Optimized: [1, 20, 13, 11, 7, 1] [3] Cost: 1125.690 to 1102.366 | Optimized: [1, 4, 22, 8, 18, 1] [4] Cost: 1340.842 to 1339.332 | Optimized: [1, 12, 5, 0, 1] ACO RESULTS [1/300 vol./1749.349 km] Berlin Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Mainz Hbf --> Berlin Hbf [2/280 vol./1187.501 km] Berlin Hbf -> Würzburg Hbf -> Nürnberg Hbf -> Leipzig Hbf -> Dresden Hbf --> Berlin Hbf [3/275 vol./1102.366 km] Berlin Hbf -> Hannover Hbf -> Osnabrück Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [4/190 vol./1339.332 km] Berlin Hbf -> Dortmund Hbf -> Aachen Hbf -> Kassel-Wilhelmshöhe --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5378.548 km.