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: 21 customers
- Berlin Hbf (95 vol.)
- Düsseldorf Hbf (60 vol.)
- Frankfurt Hbf (20 vol.)
- Hannover Hbf (85 vol.)
- Aachen Hbf (20 vol.)
- Stuttgart Hbf (65 vol.)
- Dresden Hbf (100 vol.)
- Hamburg Hbf (80 vol.)
- München Hbf (75 vol.)
- Bremen Hbf (75 vol.)
- Leipzig Hbf (45 vol.)
- Dortmund Hbf (90 vol.)
- Karlsruhe Hbf (55 vol.)
- Köln Hbf (75 vol.)
- Mannheim Hbf (70 vol.)
- Kiel Hbf (90 vol.)
- Mainz Hbf (20 vol.)
- Würzburg Hbf (95 vol.)
- Saarbrücken Hbf (65 vol.)
- Osnabrück Hbf (25 vol.)
- Freiburg Hbf (75 vol.)
Tour 1
COST: 1195.647 km
LOAD: 400 vol.
- Frankfurt Hbf | 20 vol.
- Mainz Hbf | 20 vol.
- Mannheim Hbf | 70 vol.
- Karlsruhe Hbf | 55 vol.
- Stuttgart Hbf | 65 vol.
- München Hbf | 75 vol.
- Würzburg Hbf | 95 vol.
Tour 2
COST: 1273.969 km
LOAD: 385 vol.
- Freiburg Hbf | 75 vol.
- Saarbrücken Hbf | 65 vol.
- Aachen Hbf | 20 vol.
- Köln Hbf | 75 vol.
- Düsseldorf Hbf | 60 vol.
- Dortmund Hbf | 90 vol.
Tour 3
COST: 1256.055 km
LOAD: 365 vol.
- Osnabrück Hbf | 25 vol.
- Bremen Hbf | 75 vol.
- Hamburg Hbf | 80 vol.
- Kiel Hbf | 90 vol.
- Berlin Hbf | 95 vol.
Tour 4
COST: 931.522 km
LOAD: 230 vol.
- Dresden Hbf | 100 vol.
- Leipzig Hbf | 45 vol.
- Hannover Hbf | 85 vol.
LOAD: 400 vol.
- Frankfurt Hbf | 20 vol.
- Mainz Hbf | 20 vol.
- Mannheim Hbf | 70 vol.
- Karlsruhe Hbf | 55 vol.
- Stuttgart Hbf | 65 vol.
- München Hbf | 75 vol.
- Würzburg Hbf | 95 vol.
LOAD: 385 vol.
- Freiburg Hbf | 75 vol.
- Saarbrücken Hbf | 65 vol.
- Aachen Hbf | 20 vol.
- Köln Hbf | 75 vol.
- Düsseldorf Hbf | 60 vol.
- Dortmund Hbf | 90 vol.
LOAD: 365 vol.
- Osnabrück Hbf | 25 vol.
- Bremen Hbf | 75 vol.
- Hamburg Hbf | 80 vol.
- Kiel Hbf | 90 vol.
- Berlin Hbf | 95 vol.
LOAD: 230 vol.
- Dresden Hbf | 100 vol.
- Leipzig Hbf | 45 vol.
- Hannover 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: 1380 vol. | Vehicle capacity: 400 vol. Loads: [0, 95, 60, 20, 85, 20, 65, 100, 80, 75, 75, 45, 90, 0, 55, 0, 75, 70, 90, 20, 95, 65, 25, 75] ITERATION Generation: #1 Best cost: 5849.282 | Path: [0, 1, 11, 7, 4, 10, 0, 12, 2, 16, 5, 3, 19, 17, 22, 0, 20, 6, 14, 21, 23, 0, 8, 18, 9, 0] Best cost: 5608.112 | Path: [0, 3, 19, 17, 14, 6, 20, 9, 0, 12, 2, 16, 5, 22, 10, 11, 0, 4, 8, 18, 1, 0, 23, 21, 7, 0] Best cost: 5107.142 | Path: [0, 4, 22, 10, 8, 18, 11, 0, 12, 2, 16, 5, 19, 3, 17, 0, 20, 6, 14, 23, 21, 0, 1, 7, 9, 0] Best cost: 4873.433 | Path: [0, 9, 6, 14, 17, 3, 19, 20, 0, 12, 2, 16, 5, 21, 23, 0, 22, 10, 8, 18, 4, 11, 0, 7, 1, 0] Best cost: 4838.217 | Path: [0, 9, 6, 14, 17, 19, 3, 20, 0, 22, 10, 8, 18, 4, 11, 0, 12, 2, 16, 5, 21, 23, 0, 7, 1, 0] Best cost: 4808.622 | Path: [0, 9, 6, 14, 17, 3, 19, 20, 0, 12, 2, 16, 5, 21, 23, 0, 22, 10, 8, 18, 1, 0, 4, 11, 7, 0] Generation: #2 Best cost: 4773.406 | Path: [0, 9, 6, 14, 17, 19, 3, 20, 0, 12, 2, 16, 5, 21, 23, 0, 22, 10, 8, 18, 1, 0, 4, 11, 7, 0] OPTIMIZING each tour... Current: [[0, 9, 6, 14, 17, 19, 3, 20, 0], [0, 12, 2, 16, 5, 21, 23, 0], [0, 22, 10, 8, 18, 1, 0], [0, 4, 11, 7, 0]] [1] Cost: 1305.960 to 1195.647 | Optimized: [0, 3, 19, 17, 14, 6, 9, 20, 0] [2] Cost: 1277.142 to 1273.969 | Optimized: [0, 23, 21, 5, 16, 2, 12, 0] [4] Cost: 934.249 to 931.522 | Optimized: [0, 7, 11, 4, 0] ACO RESULTS [1/400 vol./1195.647 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Stuttgart Hbf -> München Hbf -> Würzburg Hbf --> Kassel-Wilhelmshöhe [2/385 vol./1273.969 km] Kassel-Wilhelmshöhe -> Freiburg Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Köln Hbf -> Düsseldorf Hbf -> Dortmund Hbf --> Kassel-Wilhelmshöhe [3/365 vol./1256.055 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf --> Kassel-Wilhelmshöhe [4/230 vol./ 931.522 km] Kassel-Wilhelmshöhe -> Dresden Hbf -> Leipzig Hbf -> Hannover Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4657.193 km.