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: 17 customers
- Berlin Hbf (90 vol.)
- Frankfurt Hbf (60 vol.)
- Hannover Hbf (50 vol.)
- Dresden Hbf (65 vol.)
- Hamburg Hbf (45 vol.)
- München Hbf (85 vol.)
- Bremen Hbf (25 vol.)
- Leipzig Hbf (100 vol.)
- Dortmund Hbf (35 vol.)
- Nürnberg Hbf (95 vol.)
- Ulm Hbf (30 vol.)
- Köln Hbf (55 vol.)
- Mannheim Hbf (70 vol.)
- Kiel Hbf (30 vol.)
- Würzburg Hbf (20 vol.)
- Saarbrücken Hbf (50 vol.)
- Freiburg Hbf (45 vol.)
Tour 1
COST: 1549.55 km
LOAD: 390 vol.
- Dortmund Hbf | 35 vol.
- Bremen Hbf | 25 vol.
- Hamburg Hbf | 45 vol.
- Kiel Hbf | 30 vol.
- Berlin Hbf | 90 vol.
- Dresden Hbf | 65 vol.
- Leipzig Hbf | 100 vol.
Tour 2
COST: 1137.475 km
LOAD: 360 vol.
- Würzburg Hbf | 20 vol.
- Nürnberg Hbf | 95 vol.
- München Hbf | 85 vol.
- Ulm Hbf | 30 vol.
- Mannheim Hbf | 70 vol.
- Frankfurt Hbf | 60 vol.
Tour 3
COST: 1397.034 km
LOAD: 200 vol.
- Freiburg Hbf | 45 vol.
- Saarbrücken Hbf | 50 vol.
- Köln Hbf | 55 vol.
- Hannover Hbf | 50 vol.
LOAD: 390 vol.
- Dortmund Hbf | 35 vol.
- Bremen Hbf | 25 vol.
- Hamburg Hbf | 45 vol.
- Kiel Hbf | 30 vol.
- Berlin Hbf | 90 vol.
- Dresden Hbf | 65 vol.
- Leipzig Hbf | 100 vol.
LOAD: 360 vol.
- Würzburg Hbf | 20 vol.
- Nürnberg Hbf | 95 vol.
- München Hbf | 85 vol.
- Ulm Hbf | 30 vol.
- Mannheim Hbf | 70 vol.
- Frankfurt Hbf | 60 vol.
LOAD: 200 vol.
- Freiburg Hbf | 45 vol.
- Saarbrücken Hbf | 50 vol.
- Köln Hbf | 55 vol.
- Hannover 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: 950 vol. | Vehicle capacity: 400 vol. Loads: [0, 90, 0, 60, 50, 0, 0, 65, 45, 85, 25, 100, 35, 95, 0, 30, 55, 70, 30, 0, 20, 50, 0, 45] ITERATION Generation: #1 Best cost: 5922.560 | Path: [0, 1, 7, 11, 4, 10, 8, 20, 0, 3, 17, 21, 16, 12, 13, 15, 0, 18, 9, 23, 0] Best cost: 5131.038 | Path: [0, 3, 17, 21, 12, 16, 10, 8, 18, 20, 0, 4, 11, 7, 1, 13, 0, 15, 9, 23, 0] Best cost: 4819.721 | Path: [0, 4, 10, 8, 18, 12, 16, 3, 17, 20, 0, 11, 7, 1, 13, 15, 0, 21, 23, 9, 0] Best cost: 4470.892 | Path: [0, 7, 1, 11, 13, 20, 15, 0, 12, 16, 3, 17, 21, 23, 9, 0, 4, 10, 8, 18, 0] Best cost: 4447.863 | Path: [0, 1, 11, 7, 13, 20, 15, 0, 12, 16, 3, 17, 21, 23, 9, 0, 4, 10, 8, 18, 0] Best cost: 4324.709 | Path: [0, 11, 7, 1, 8, 18, 10, 12, 0, 3, 17, 21, 23, 15, 9, 20, 0, 4, 16, 13, 0] Best cost: 4287.845 | Path: [0, 16, 12, 10, 4, 8, 18, 1, 7, 0, 3, 17, 21, 23, 15, 9, 20, 0, 11, 13, 0] Best cost: 4233.213 | Path: [0, 16, 12, 4, 10, 8, 18, 1, 7, 0, 3, 17, 21, 23, 15, 9, 20, 0, 11, 13, 0] Best cost: 4168.832 | Path: [0, 20, 13, 9, 15, 23, 17, 21, 0, 3, 16, 12, 4, 10, 8, 18, 1, 0, 11, 7, 0] Generation: #2 Best cost: 4115.306 | Path: [0, 11, 7, 1, 8, 18, 10, 12, 0, 20, 13, 9, 15, 17, 3, 0, 4, 16, 21, 23, 0] OPTIMIZING each tour... Current: [[0, 11, 7, 1, 8, 18, 10, 12, 0], [0, 20, 13, 9, 15, 17, 3, 0], [0, 4, 16, 21, 23, 0]] [1] Cost: 1571.207 to 1549.550 | Optimized: [0, 12, 10, 8, 18, 1, 7, 11, 0] [3] Cost: 1406.624 to 1397.034 | Optimized: [0, 23, 21, 16, 4, 0] ACO RESULTS [1/390 vol./1549.550 km] Kassel-Wilhelmshöhe -> Dortmund Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [2/360 vol./1137.475 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Mannheim Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [3/200 vol./1397.034 km] Kassel-Wilhelmshöhe -> Freiburg Hbf -> Saarbrücken Hbf -> Köln Hbf -> Hannover Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 4084.059 km.