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: 18 customers
- Frankfurt Hbf (50 vol.)
- Hannover Hbf (100 vol.)
- Aachen Hbf (65 vol.)
- Dresden Hbf (55 vol.)
- München Hbf (55 vol.)
- Bremen Hbf (65 vol.)
- Leipzig Hbf (85 vol.)
- Dortmund Hbf (65 vol.)
- Nürnberg Hbf (45 vol.)
- Karlsruhe Hbf (80 vol.)
- Ulm Hbf (65 vol.)
- Köln Hbf (100 vol.)
- Mannheim Hbf (100 vol.)
- Kiel Hbf (60 vol.)
- Mainz Hbf (50 vol.)
- Würzburg Hbf (80 vol.)
- Saarbrücken Hbf (35 vol.)
- Osnabrück Hbf (70 vol.)
Tour 1
COST: 1159.157 km
LOAD: 375 vol.
- Würzburg Hbf | 80 vol.
- Nürnberg Hbf | 45 vol.
- München Hbf | 55 vol.
- Ulm Hbf | 65 vol.
- Karlsruhe Hbf | 80 vol.
- Mainz Hbf | 50 vol.
Tour 2
COST: 991.621 km
LOAD: 350 vol.
- Frankfurt Hbf | 50 vol.
- Mannheim Hbf | 100 vol.
- Saarbrücken Hbf | 35 vol.
- Aachen Hbf | 65 vol.
- Köln Hbf | 100 vol.
Tour 3
COST: 1042.443 km
LOAD: 360 vol.
- Dortmund Hbf | 65 vol.
- Osnabrück Hbf | 70 vol.
- Bremen Hbf | 65 vol.
- Kiel Hbf | 60 vol.
- Hannover Hbf | 100 vol.
Tour 4
COST: 758.587 km
LOAD: 140 vol.
- Dresden Hbf | 55 vol.
- Leipzig Hbf | 85 vol.
LOAD: 375 vol.
- Würzburg Hbf | 80 vol.
- Nürnberg Hbf | 45 vol.
- München Hbf | 55 vol.
- Ulm Hbf | 65 vol.
- Karlsruhe Hbf | 80 vol.
- Mainz Hbf | 50 vol.
LOAD: 350 vol.
- Frankfurt Hbf | 50 vol.
- Mannheim Hbf | 100 vol.
- Saarbrücken Hbf | 35 vol.
- Aachen Hbf | 65 vol.
- Köln Hbf | 100 vol.
LOAD: 360 vol.
- Dortmund Hbf | 65 vol.
- Osnabrück Hbf | 70 vol.
- Bremen Hbf | 65 vol.
- Kiel Hbf | 60 vol.
- Hannover Hbf | 100 vol.
LOAD: 140 vol.
- Dresden Hbf | 55 vol.
- Leipzig 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: 1225 vol. | Vehicle capacity: 400 vol. Loads: [0, 0, 0, 50, 100, 65, 0, 55, 0, 55, 65, 85, 65, 45, 80, 65, 100, 100, 60, 50, 80, 35, 70, 0] ITERATION Generation: #1 Best cost: 4421.408 | Path: [0, 3, 19, 17, 14, 21, 5, 0, 12, 16, 22, 10, 4, 0, 20, 13, 9, 15, 11, 7, 0, 18, 0] Best cost: 4384.438 | Path: [0, 4, 10, 22, 12, 16, 0, 19, 3, 17, 14, 21, 5, 0, 20, 13, 9, 15, 7, 11, 0, 18, 0] Best cost: 4259.357 | Path: [0, 7, 11, 4, 10, 22, 0, 12, 16, 5, 21, 14, 3, 0, 20, 13, 9, 15, 17, 19, 0, 18, 0] Generation: #2 Best cost: 4258.463 | Path: [0, 22, 12, 16, 5, 19, 3, 0, 20, 13, 9, 15, 14, 21, 0, 4, 10, 18, 7, 11, 0, 17, 0] Best cost: 4087.773 | Path: [0, 20, 13, 9, 15, 14, 19, 0, 3, 17, 21, 5, 16, 0, 12, 22, 4, 10, 18, 0, 11, 7, 0] OPTIMIZING each tour... Current: [[0, 20, 13, 9, 15, 14, 19, 0], [0, 3, 17, 21, 5, 16, 0], [0, 12, 22, 4, 10, 18, 0], [0, 11, 7, 0]] [3] Cost: 1175.352 to 1042.443 | Optimized: [0, 12, 22, 10, 18, 4, 0] [4] Cost: 761.643 to 758.587 | Optimized: [0, 7, 11, 0] ACO RESULTS [1/375 vol./1159.157 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Karlsruhe Hbf -> Mainz Hbf --> Kassel-Wilhelmshöhe [2/350 vol./ 991.621 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mannheim Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Köln Hbf --> Kassel-Wilhelmshöhe [3/360 vol./1042.443 km] Kassel-Wilhelmshöhe -> Dortmund Hbf -> Osnabrück Hbf -> Bremen Hbf -> Kiel Hbf -> Hannover Hbf --> Kassel-Wilhelmshöhe [4/140 vol./ 758.587 km] Kassel-Wilhelmshöhe -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 3951.808 km.