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 (45 vol.)
- Düsseldorf Hbf (55 vol.)
- Frankfurt Hbf (80 vol.)
- Aachen Hbf (95 vol.)
- Stuttgart Hbf (35 vol.)
- Dresden Hbf (85 vol.)
- Hamburg Hbf (90 vol.)
- München Hbf (50 vol.)
- Bremen Hbf (60 vol.)
- Leipzig Hbf (35 vol.)
- Dortmund Hbf (35 vol.)
- Nürnberg Hbf (40 vol.)
- Karlsruhe Hbf (30 vol.)
- Ulm Hbf (55 vol.)
- Köln Hbf (65 vol.)
- Mannheim Hbf (65 vol.)
- Kiel Hbf (95 vol.)
- Mainz Hbf (90 vol.)
- Saarbrücken Hbf (40 vol.)
- Osnabrück Hbf (100 vol.)
- Freiburg Hbf (65 vol.)
Tour 1
COST: 801.986 km
LOAD: 385 vol.
- Frankfurt Hbf | 80 vol.
- Mainz Hbf | 90 vol.
- Köln Hbf | 65 vol.
- Aachen Hbf | 95 vol.
- Düsseldorf Hbf | 55 vol.
Tour 2
COST: 1046.009 km
LOAD: 380 vol.
- Hamburg Hbf | 90 vol.
- Kiel Hbf | 95 vol.
- Bremen Hbf | 60 vol.
- Osnabrück Hbf | 100 vol.
- Dortmund Hbf | 35 vol.
Tour 3
COST: 1659.281 km
LOAD: 380 vol.
- Saarbrücken Hbf | 40 vol.
- Freiburg Hbf | 65 vol.
- Karlsruhe Hbf | 30 vol.
- Mannheim Hbf | 65 vol.
- Stuttgart Hbf | 35 vol.
- Ulm Hbf | 55 vol.
- München Hbf | 50 vol.
- Nürnberg Hbf | 40 vol.
Tour 4
COST: 975.554 km
LOAD: 165 vol.
- Berlin Hbf | 45 vol.
- Dresden Hbf | 85 vol.
- Leipzig Hbf | 35 vol.
LOAD: 385 vol.
- Frankfurt Hbf | 80 vol.
- Mainz Hbf | 90 vol.
- Köln Hbf | 65 vol.
- Aachen Hbf | 95 vol.
- Düsseldorf Hbf | 55 vol.
LOAD: 380 vol.
- Hamburg Hbf | 90 vol.
- Kiel Hbf | 95 vol.
- Bremen Hbf | 60 vol.
- Osnabrück Hbf | 100 vol.
- Dortmund Hbf | 35 vol.
LOAD: 380 vol.
- Saarbrücken Hbf | 40 vol.
- Freiburg Hbf | 65 vol.
- Karlsruhe Hbf | 30 vol.
- Mannheim Hbf | 65 vol.
- Stuttgart Hbf | 35 vol.
- Ulm Hbf | 55 vol.
- München Hbf | 50 vol.
- Nürnberg Hbf | 40 vol.
LOAD: 165 vol.
- Berlin Hbf | 45 vol.
- Dresden Hbf | 85 vol.
- Leipzig Hbf | 35 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: 1310 vol. | Vehicle capacity: 400 vol. Loads: [0, 45, 55, 80, 0, 95, 35, 85, 90, 50, 60, 35, 35, 40, 30, 55, 65, 65, 95, 90, 0, 40, 100, 65] ITERATION Generation: #1 Best cost: 6254.914 | Path: [0, 1, 11, 7, 13, 6, 14, 17, 21, 0, 2, 16, 5, 12, 22, 9, 0, 19, 3, 23, 15, 10, 0, 8, 18, 0] Best cost: 5404.775 | Path: [0, 2, 16, 12, 22, 10, 1, 11, 0, 3, 19, 17, 14, 6, 15, 13, 0, 5, 21, 23, 9, 7, 0, 8, 18, 0] Best cost: 5394.389 | Path: [0, 3, 19, 17, 14, 6, 15, 13, 0, 12, 2, 16, 5, 21, 23, 11, 0, 22, 10, 8, 18, 1, 0, 7, 9, 0] Best cost: 5221.254 | Path: [0, 7, 11, 1, 8, 18, 12, 0, 22, 10, 2, 16, 5, 0, 3, 19, 17, 14, 6, 15, 13, 0, 21, 23, 9, 0] Best cost: 4835.205 | Path: [0, 8, 18, 10, 22, 12, 0, 19, 3, 17, 14, 6, 15, 13, 0, 2, 16, 5, 21, 23, 9, 0, 11, 7, 1, 0] Best cost: 4788.271 | Path: [0, 1, 7, 11, 13, 9, 15, 6, 14, 0, 12, 2, 16, 5, 19, 21, 0, 22, 10, 8, 18, 0, 3, 17, 23, 0] Best cost: 4704.815 | Path: [0, 17, 14, 6, 15, 9, 13, 7, 11, 0, 12, 2, 16, 5, 21, 19, 0, 22, 10, 8, 18, 1, 0, 3, 23, 0] Generation: #2 Best cost: 4704.801 | Path: [0, 12, 2, 16, 5, 21, 17, 14, 0, 22, 10, 8, 18, 1, 0, 7, 11, 13, 9, 15, 6, 23, 0, 3, 19, 0] Best cost: 4692.757 | Path: [0, 13, 9, 15, 6, 14, 17, 19, 12, 0, 22, 10, 8, 18, 1, 0, 16, 2, 5, 21, 23, 3, 0, 11, 7, 0] Best cost: 4593.993 | Path: [0, 22, 10, 8, 18, 1, 0, 12, 2, 16, 5, 21, 14, 17, 0, 11, 7, 13, 9, 15, 6, 23, 0, 3, 19, 0] Best cost: 4514.820 | Path: [0, 2, 16, 5, 19, 3, 0, 12, 22, 10, 8, 18, 0, 13, 9, 15, 6, 14, 17, 21, 23, 0, 11, 7, 1, 0] OPTIMIZING each tour... Current: [[0, 2, 16, 5, 19, 3, 0], [0, 12, 22, 10, 8, 18, 0], [0, 13, 9, 15, 6, 14, 17, 21, 23, 0], [0, 11, 7, 1, 0]] [1] Cost: 819.209 to 801.986 | Optimized: [0, 3, 19, 16, 5, 2, 0] [2] Cost: 1048.264 to 1046.009 | Optimized: [0, 8, 18, 10, 22, 12, 0] [3] Cost: 1670.437 to 1659.281 | Optimized: [0, 21, 23, 14, 17, 6, 15, 9, 13, 0] [4] Cost: 976.910 to 975.554 | Optimized: [0, 1, 7, 11, 0] ACO RESULTS [1/385 vol./ 801.986 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mainz Hbf -> Köln Hbf -> Aachen Hbf -> Düsseldorf Hbf --> Kassel-Wilhelmshöhe [2/380 vol./1046.009 km] Kassel-Wilhelmshöhe -> Hamburg Hbf -> Kiel Hbf -> Bremen Hbf -> Osnabrück Hbf -> Dortmund Hbf --> Kassel-Wilhelmshöhe [3/380 vol./1659.281 km] Kassel-Wilhelmshöhe -> Saarbrücken Hbf -> Freiburg Hbf -> Karlsruhe Hbf -> Mannheim Hbf -> Stuttgart Hbf -> Ulm Hbf -> München Hbf -> Nürnberg Hbf --> Kassel-Wilhelmshöhe [4/165 vol./ 975.554 km] Kassel-Wilhelmshöhe -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4482.830 km.