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: 15 customers
- Berlin Hbf (50 vol.)
- Düsseldorf Hbf (95 vol.)
- Frankfurt Hbf (90 vol.)
- Hannover Hbf (20 vol.)
- Hamburg Hbf (80 vol.)
- München Hbf (30 vol.)
- Bremen Hbf (35 vol.)
- Dortmund Hbf (45 vol.)
- Nürnberg Hbf (25 vol.)
- Karlsruhe Hbf (90 vol.)
- Köln Hbf (45 vol.)
- Kiel Hbf (65 vol.)
- Würzburg Hbf (50 vol.)
- Saarbrücken Hbf (45 vol.)
- Osnabrück Hbf (35 vol.)
Tour 1
COST: 1232.607 km
LOAD: 400 vol.
- Hamburg Hbf | 80 vol.
- Kiel Hbf | 65 vol.
- Bremen Hbf | 35 vol.
- Osnabrück Hbf | 35 vol.
- Dortmund Hbf | 45 vol.
- Düsseldorf Hbf | 95 vol.
- Köln Hbf | 45 vol.
Tour 2
COST: 2019.041 km
LOAD: 400 vol.
- Hannover Hbf | 20 vol.
- Berlin Hbf | 50 vol.
- Nürnberg Hbf | 25 vol.
- München Hbf | 30 vol.
- Karlsruhe Hbf | 90 vol.
- Saarbrücken Hbf | 45 vol.
- Frankfurt Hbf | 90 vol.
- Würzburg Hbf | 50 vol.
LOAD: 400 vol.
- Hamburg Hbf | 80 vol.
- Kiel Hbf | 65 vol.
- Bremen Hbf | 35 vol.
- Osnabrück Hbf | 35 vol.
- Dortmund Hbf | 45 vol.
- Düsseldorf Hbf | 95 vol.
- Köln Hbf | 45 vol.
LOAD: 400 vol.
- Hannover Hbf | 20 vol.
- Berlin Hbf | 50 vol.
- Nürnberg Hbf | 25 vol.
- München Hbf | 30 vol.
- Karlsruhe Hbf | 90 vol.
- Saarbrücken Hbf | 45 vol.
- Frankfurt Hbf | 90 vol.
- Würzburg Hbf | 50 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: 800 vol. | Vehicle capacity: 400 vol. Loads: [0, 50, 95, 90, 20, 0, 0, 0, 80, 30, 35, 0, 45, 25, 90, 0, 45, 0, 65, 0, 50, 45, 35, 0] ITERATION Generation: #1 Best cost: 3850.264 | Path: [0, 1, 18, 8, 10, 4, 22, 12, 16, 13, 0, 2, 21, 14, 3, 20, 9, 0] Best cost: 3475.288 | Path: [0, 2, 16, 12, 22, 10, 8, 18, 0, 3, 20, 13, 9, 14, 21, 4, 1, 0] Best cost: 3346.880 | Path: [0, 14, 21, 3, 20, 13, 9, 1, 4, 0, 12, 2, 16, 22, 10, 8, 18, 0] Best cost: 3338.060 | Path: [0, 16, 2, 12, 22, 10, 8, 18, 0, 3, 14, 21, 20, 13, 9, 1, 4, 0] Best cost: 3291.821 | Path: [0, 18, 8, 10, 22, 12, 2, 16, 0, 4, 1, 20, 13, 9, 14, 21, 3, 0] Best cost: 3287.313 | Path: [0, 2, 16, 12, 22, 10, 8, 18, 0, 4, 1, 20, 13, 9, 14, 21, 3, 0] Generation: #2 Best cost: 3276.730 | Path: [0, 16, 2, 12, 22, 10, 8, 18, 0, 4, 1, 20, 13, 9, 14, 21, 3, 0] Generation: #3 Best cost: 3255.152 | Path: [0, 16, 2, 12, 22, 10, 8, 18, 0, 4, 1, 13, 9, 14, 21, 3, 20, 0] Generation: #9 Best cost: 3254.886 | Path: [0, 12, 2, 16, 22, 10, 8, 18, 0, 4, 1, 13, 9, 14, 21, 3, 20, 0] OPTIMIZING each tour... Current: [[0, 12, 2, 16, 22, 10, 8, 18, 0], [0, 4, 1, 13, 9, 14, 21, 3, 20, 0]] [1] Cost: 1235.845 to 1232.607 | Optimized: [0, 8, 18, 10, 22, 12, 2, 16, 0] ACO RESULTS [1/400 vol./1232.607 km] Kassel-Wilhelmshöhe -> Hamburg Hbf -> Kiel Hbf -> Bremen Hbf -> Osnabrück Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf --> Kassel-Wilhelmshöhe [2/400 vol./2019.041 km] Kassel-Wilhelmshöhe -> Hannover Hbf -> Berlin Hbf -> Nürnberg Hbf -> München Hbf -> Karlsruhe Hbf -> Saarbrücken Hbf -> Frankfurt Hbf -> Würzburg Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 2 tours | 3251.648 km.