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: 300 vol.
ACTIVE: 21 customers
- Kassel-Wilhelmshöhe (45 vol.)
- Düsseldorf Hbf (65 vol.)
- Frankfurt Hbf (80 vol.)
- Hannover Hbf (90 vol.)
- Stuttgart Hbf (60 vol.)
- Dresden Hbf (55 vol.)
- Hamburg Hbf (80 vol.)
- München Hbf (80 vol.)
- Bremen Hbf (30 vol.)
- Leipzig Hbf (70 vol.)
- Dortmund Hbf (100 vol.)
- Nürnberg Hbf (65 vol.)
- Karlsruhe Hbf (75 vol.)
- Ulm Hbf (35 vol.)
- Köln Hbf (100 vol.)
- Mannheim Hbf (75 vol.)
- Kiel Hbf (25 vol.)
- Mainz Hbf (60 vol.)
- Würzburg Hbf (25 vol.)
- Saarbrücken Hbf (20 vol.)
- Osnabrück Hbf (65 vol.)
Tour 1
COST: 1816.538 km
LOAD: 295 vol.
- München Hbf | 80 vol.
- Ulm Hbf | 35 vol.
- Stuttgart Hbf | 60 vol.
- Karlsruhe Hbf | 75 vol.
- Saarbrücken Hbf | 20 vol.
- Würzburg Hbf | 25 vol.
Tour 2
COST: 1252.129 km
LOAD: 270 vol.
- Dresden Hbf | 55 vol.
- Leipzig Hbf | 70 vol.
- Hannover Hbf | 90 vol.
- Bremen Hbf | 30 vol.
- Kiel Hbf | 25 vol.
Tour 3
COST: 1189.137 km
LOAD: 290 vol.
- Kassel-Wilhelmshöhe | 45 vol.
- Dortmund Hbf | 100 vol.
- Osnabrück Hbf | 65 vol.
- Hamburg Hbf | 80 vol.
Tour 4
COST: 1342.338 km
LOAD: 280 vol.
- Frankfurt Hbf | 80 vol.
- Mainz Hbf | 60 vol.
- Mannheim Hbf | 75 vol.
- Nürnberg Hbf | 65 vol.
Tour 5
COST: 1164.703 km
LOAD: 165 vol.
- Köln Hbf | 100 vol.
- Düsseldorf Hbf | 65 vol.
LOAD: 295 vol.
- München Hbf | 80 vol.
- Ulm Hbf | 35 vol.
- Stuttgart Hbf | 60 vol.
- Karlsruhe Hbf | 75 vol.
- Saarbrücken Hbf | 20 vol.
- Würzburg Hbf | 25 vol.
LOAD: 270 vol.
- Dresden Hbf | 55 vol.
- Leipzig Hbf | 70 vol.
- Hannover Hbf | 90 vol.
- Bremen Hbf | 30 vol.
- Kiel Hbf | 25 vol.
LOAD: 290 vol.
- Kassel-Wilhelmshöhe | 45 vol.
- Dortmund Hbf | 100 vol.
- Osnabrück Hbf | 65 vol.
- Hamburg Hbf | 80 vol.
LOAD: 280 vol.
- Frankfurt Hbf | 80 vol.
- Mainz Hbf | 60 vol.
- Mannheim Hbf | 75 vol.
- Nürnberg Hbf | 65 vol.
LOAD: 165 vol.
- Köln Hbf | 100 vol.
- Düsseldorf Hbf | 65 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: [1] Berlin Hbf | Number of cities: 24 | Total loads: 1300 vol. | Vehicle capacity: 300 vol. Loads: [45, 0, 65, 80, 90, 0, 60, 55, 80, 80, 30, 70, 100, 65, 75, 35, 100, 75, 25, 60, 25, 20, 65, 0] ITERATION Generation: #1 Best cost: 7698.167 | Path: [1, 0, 12, 2, 22, 18, 1, 11, 7, 20, 13, 6, 21, 1, 4, 10, 8, 16, 1, 3, 19, 17, 14, 1, 15, 9, 1] Best cost: 7552.766 | Path: [1, 6, 15, 14, 17, 21, 20, 1, 11, 7, 13, 9, 10, 1, 4, 22, 12, 0, 1, 8, 18, 2, 16, 1, 3, 19, 1] Best cost: 7268.278 | Path: [1, 8, 18, 10, 22, 12, 1, 11, 7, 20, 13, 3, 1, 4, 0, 19, 17, 21, 1, 9, 15, 6, 14, 1, 16, 2, 1] Best cost: 6955.852 | Path: [1, 9, 15, 6, 14, 21, 20, 1, 7, 11, 4, 10, 18, 1, 8, 22, 12, 0, 1, 2, 16, 19, 17, 1, 3, 13, 1] Best cost: 6936.578 | Path: [1, 21, 14, 6, 15, 9, 20, 1, 7, 11, 0, 12, 10, 1, 4, 22, 2, 3, 1, 16, 19, 17, 13, 1, 8, 18, 1] Best cost: 6924.837 | Path: [1, 15, 6, 14, 17, 21, 20, 1, 7, 11, 4, 22, 1, 8, 18, 10, 12, 2, 1, 16, 19, 3, 0, 1, 13, 9, 1] Best cost: 6874.231 | Path: [1, 9, 15, 6, 14, 21, 20, 1, 7, 11, 4, 10, 18, 1, 8, 22, 12, 0, 1, 13, 19, 3, 17, 1, 16, 2, 1] Best cost: 6786.548 | Path: [1, 9, 15, 6, 14, 21, 20, 1, 11, 7, 10, 8, 18, 1, 4, 22, 12, 0, 1, 3, 19, 17, 13, 1, 16, 2, 1] Generation: #2 Best cost: 6779.117 | Path: [1, 9, 15, 6, 14, 21, 20, 1, 7, 11, 4, 10, 18, 1, 8, 22, 12, 0, 1, 13, 17, 19, 3, 1, 2, 16, 1] Generation: #3 Best cost: 6778.807 | Path: [1, 9, 15, 6, 14, 21, 20, 1, 7, 11, 4, 10, 18, 1, 8, 22, 12, 0, 1, 13, 17, 19, 3, 1, 16, 2, 1] OPTIMIZING each tour... Current: [[1, 9, 15, 6, 14, 21, 20, 1], [1, 7, 11, 4, 10, 18, 1], [1, 8, 22, 12, 0, 1], [1, 13, 17, 19, 3, 1], [1, 16, 2, 1]] [3] Cost: 1201.077 to 1189.137 | Optimized: [1, 0, 12, 22, 8, 1] [4] Cost: 1344.360 to 1342.338 | Optimized: [1, 3, 19, 17, 13, 1] ACO RESULTS [1/295 vol./1816.538 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Saarbrücken Hbf -> Würzburg Hbf --> Berlin Hbf [2/270 vol./1252.129 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Hannover Hbf -> Bremen Hbf -> Kiel Hbf --> Berlin Hbf [3/290 vol./1189.137 km] Berlin Hbf -> Kassel-Wilhelmshöhe -> Dortmund Hbf -> Osnabrück Hbf -> Hamburg Hbf --> Berlin Hbf [4/280 vol./1342.338 km] Berlin Hbf -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Nürnberg Hbf --> Berlin Hbf [5/165 vol./1164.703 km] Berlin Hbf -> Köln Hbf -> Düsseldorf Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 6764.845 km.