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: 20 customers
- Düsseldorf Hbf (95 vol.)
- Frankfurt Hbf (45 vol.)
- Hannover Hbf (30 vol.)
- Aachen Hbf (40 vol.)
- Stuttgart Hbf (45 vol.)
- Dresden Hbf (90 vol.)
- Hamburg Hbf (80 vol.)
- München Hbf (30 vol.)
- Bremen Hbf (75 vol.)
- Leipzig Hbf (90 vol.)
- Dortmund Hbf (55 vol.)
- Nürnberg Hbf (85 vol.)
- Karlsruhe Hbf (60 vol.)
- Ulm Hbf (95 vol.)
- Köln Hbf (90 vol.)
- Mannheim Hbf (60 vol.)
- Kiel Hbf (70 vol.)
- Mainz Hbf (35 vol.)
- Saarbrücken Hbf (50 vol.)
- Freiburg Hbf (90 vol.)
Tour 1
COST: 1140.715 km
LOAD: 375 vol.
- Nürnberg Hbf | 85 vol.
- München Hbf | 30 vol.
- Ulm Hbf | 95 vol.
- Stuttgart Hbf | 45 vol.
- Karlsruhe Hbf | 60 vol.
- Mannheim Hbf | 60 vol.
Tour 2
COST: 1210.01 km
LOAD: 400 vol.
- Hannover Hbf | 30 vol.
- Hamburg Hbf | 80 vol.
- Kiel Hbf | 70 vol.
- Bremen Hbf | 75 vol.
- Dortmund Hbf | 55 vol.
- Köln Hbf | 90 vol.
Tour 3
COST: 1287.261 km
LOAD: 355 vol.
- Düsseldorf Hbf | 95 vol.
- Aachen Hbf | 40 vol.
- Saarbrücken Hbf | 50 vol.
- Freiburg Hbf | 90 vol.
- Mainz Hbf | 35 vol.
- Frankfurt Hbf | 45 vol.
Tour 4
COST: 758.587 km
LOAD: 180 vol.
- Dresden Hbf | 90 vol.
- Leipzig Hbf | 90 vol.
LOAD: 375 vol.
- Nürnberg Hbf | 85 vol.
- München Hbf | 30 vol.
- Ulm Hbf | 95 vol.
- Stuttgart Hbf | 45 vol.
- Karlsruhe Hbf | 60 vol.
- Mannheim Hbf | 60 vol.
LOAD: 400 vol.
- Hannover Hbf | 30 vol.
- Hamburg Hbf | 80 vol.
- Kiel Hbf | 70 vol.
- Bremen Hbf | 75 vol.
- Dortmund Hbf | 55 vol.
- Köln Hbf | 90 vol.
LOAD: 355 vol.
- Düsseldorf Hbf | 95 vol.
- Aachen Hbf | 40 vol.
- Saarbrücken Hbf | 50 vol.
- Freiburg Hbf | 90 vol.
- Mainz Hbf | 35 vol.
- Frankfurt Hbf | 45 vol.
LOAD: 180 vol.
- Dresden Hbf | 90 vol.
- Leipzig Hbf | 90 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, 0, 95, 45, 30, 40, 45, 90, 80, 30, 75, 90, 55, 85, 60, 95, 90, 60, 70, 35, 0, 50, 0, 90] ITERATION Generation: #1 Best cost: 6673.133 | Path: [0, 2, 16, 5, 12, 3, 19, 4, 0, 11, 7, 10, 8, 9, 0, 13, 6, 15, 14, 17, 21, 0, 23, 18, 0] Best cost: 5623.011 | Path: [0, 3, 19, 17, 14, 6, 15, 9, 4, 0, 12, 2, 16, 5, 21, 18, 0, 11, 7, 13, 23, 0, 8, 10, 0] Best cost: 5275.219 | Path: [0, 4, 10, 8, 18, 12, 16, 0, 3, 19, 17, 14, 6, 15, 9, 0, 11, 7, 13, 21, 5, 0, 2, 23, 0] Best cost: 4776.626 | Path: [0, 6, 14, 17, 19, 3, 21, 23, 0, 12, 2, 16, 5, 10, 4, 0, 11, 7, 13, 9, 15, 0, 8, 18, 0] Best cost: 4741.157 | Path: [0, 4, 10, 8, 18, 12, 16, 0, 19, 3, 17, 14, 6, 15, 9, 0, 2, 5, 21, 23, 13, 0, 11, 7, 0] Best cost: 4730.178 | Path: [0, 8, 18, 10, 4, 12, 16, 0, 3, 19, 17, 14, 6, 15, 9, 0, 2, 5, 21, 23, 13, 0, 11, 7, 0] Best cost: 4575.566 | Path: [0, 11, 7, 13, 9, 15, 0, 3, 19, 17, 14, 6, 23, 21, 0, 4, 10, 8, 18, 12, 16, 0, 2, 5, 0] Best cost: 4532.601 | Path: [0, 13, 9, 15, 6, 14, 17, 0, 4, 8, 18, 10, 12, 16, 0, 2, 5, 3, 19, 21, 23, 0, 11, 7, 0] OPTIMIZING each tour... Current: [[0, 13, 9, 15, 6, 14, 17, 0], [0, 4, 8, 18, 10, 12, 16, 0], [0, 2, 5, 3, 19, 21, 23, 0], [0, 11, 7, 0]] [3] Cost: 1420.233 to 1287.261 | Optimized: [0, 2, 5, 21, 23, 19, 3, 0] [4] Cost: 761.643 to 758.587 | Optimized: [0, 7, 11, 0] ACO RESULTS [1/375 vol./1140.715 km] Kassel-Wilhelmshöhe -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Mannheim Hbf --> Kassel-Wilhelmshöhe [2/400 vol./1210.010 km] Kassel-Wilhelmshöhe -> Hannover Hbf -> Hamburg Hbf -> Kiel Hbf -> Bremen Hbf -> Dortmund Hbf -> Köln Hbf --> Kassel-Wilhelmshöhe [3/355 vol./1287.261 km] Kassel-Wilhelmshöhe -> Düsseldorf Hbf -> Aachen Hbf -> Saarbrücken Hbf -> Freiburg Hbf -> Mainz Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [4/180 vol./ 758.587 km] Kassel-Wilhelmshöhe -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4396.573 km.