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: 22 customers
- Berlin Hbf (85 vol.)
- Düsseldorf Hbf (80 vol.)
- Frankfurt Hbf (25 vol.)
- Hannover Hbf (25 vol.)
- Aachen Hbf (50 vol.)
- Stuttgart Hbf (45 vol.)
- Dresden Hbf (75 vol.)
- Hamburg Hbf (25 vol.)
- München Hbf (65 vol.)
- Bremen Hbf (95 vol.)
- Leipzig Hbf (20 vol.)
- Dortmund Hbf (30 vol.)
- Nürnberg Hbf (60 vol.)
- Ulm Hbf (30 vol.)
- Köln Hbf (75 vol.)
- Mannheim Hbf (25 vol.)
- Kiel Hbf (80 vol.)
- Mainz Hbf (90 vol.)
- Würzburg Hbf (90 vol.)
- Saarbrücken Hbf (50 vol.)
- Osnabrück Hbf (45 vol.)
- Freiburg Hbf (65 vol.)
Tour 1
COST: 1446.488 km
LOAD: 380 vol.
- Bremen Hbf | 95 vol.
- Hamburg Hbf | 25 vol.
- Kiel Hbf | 80 vol.
- Berlin Hbf | 85 vol.
- Dresden Hbf | 75 vol.
- Leipzig Hbf | 20 vol.
Tour 2
COST: 1093.351 km
LOAD: 395 vol.
- Mainz Hbf | 90 vol.
- Aachen Hbf | 50 vol.
- Köln Hbf | 75 vol.
- Düsseldorf Hbf | 80 vol.
- Dortmund Hbf | 30 vol.
- Osnabrück Hbf | 45 vol.
- Hannover Hbf | 25 vol.
Tour 3
COST: 1552.549 km
LOAD: 365 vol.
- Nürnberg Hbf | 60 vol.
- München Hbf | 65 vol.
- Ulm Hbf | 30 vol.
- Stuttgart Hbf | 45 vol.
- Freiburg Hbf | 65 vol.
- Saarbrücken Hbf | 50 vol.
- Mannheim Hbf | 25 vol.
- Frankfurt Hbf | 25 vol.
Tour 4
COST: 427.695 km
LOAD: 90 vol.
- Würzburg Hbf | 90 vol.
LOAD: 380 vol.
- Bremen Hbf | 95 vol.
- Hamburg Hbf | 25 vol.
- Kiel Hbf | 80 vol.
- Berlin Hbf | 85 vol.
- Dresden Hbf | 75 vol.
- Leipzig Hbf | 20 vol.
LOAD: 395 vol.
- Mainz Hbf | 90 vol.
- Aachen Hbf | 50 vol.
- Köln Hbf | 75 vol.
- Düsseldorf Hbf | 80 vol.
- Dortmund Hbf | 30 vol.
- Osnabrück Hbf | 45 vol.
- Hannover Hbf | 25 vol.
LOAD: 365 vol.
- Nürnberg Hbf | 60 vol.
- München Hbf | 65 vol.
- Ulm Hbf | 30 vol.
- Stuttgart Hbf | 45 vol.
- Freiburg Hbf | 65 vol.
- Saarbrücken Hbf | 50 vol.
- Mannheim Hbf | 25 vol.
- Frankfurt Hbf | 25 vol.
LOAD: 90 vol.
- Würzburg 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: 1230 vol. | Vehicle capacity: 400 vol. Loads: [0, 85, 80, 25, 25, 50, 45, 75, 25, 65, 95, 20, 30, 60, 0, 30, 75, 25, 80, 90, 90, 50, 45, 65] ITERATION Generation: #1 Best cost: 5270.305 | Path: [0, 1, 7, 11, 4, 10, 8, 22, 12, 0, 16, 2, 5, 17, 3, 19, 21, 0, 20, 13, 9, 15, 6, 23, 0, 18, 0] Best cost: 5181.955 | Path: [0, 3, 19, 17, 21, 6, 15, 9, 13, 0, 12, 2, 16, 5, 22, 10, 8, 0, 4, 18, 1, 11, 7, 20, 0, 23, 0] Best cost: 5039.585 | Path: [0, 4, 10, 22, 12, 2, 16, 5, 0, 3, 19, 17, 21, 6, 15, 9, 13, 0, 20, 11, 7, 1, 8, 18, 0, 23, 0] Best cost: 5011.437 | Path: [0, 5, 16, 2, 12, 22, 10, 4, 0, 3, 19, 17, 21, 23, 6, 15, 9, 0, 20, 13, 11, 7, 1, 8, 0, 18, 0] Best cost: 4973.039 | Path: [0, 17, 3, 19, 20, 13, 9, 15, 0, 12, 2, 16, 5, 21, 23, 6, 0, 22, 10, 4, 8, 18, 1, 11, 0, 7, 0] Best cost: 4919.486 | Path: [0, 22, 12, 2, 16, 5, 21, 17, 3, 11, 0, 4, 10, 8, 18, 1, 7, 0, 20, 13, 9, 15, 6, 23, 0, 19, 0] Best cost: 4856.083 | Path: [0, 11, 7, 1, 4, 8, 18, 22, 12, 0, 2, 16, 5, 21, 19, 3, 17, 0, 20, 13, 9, 15, 6, 23, 0, 10, 0] Generation: #2 Best cost: 4650.899 | Path: [0, 7, 11, 1, 8, 18, 10, 0, 4, 22, 12, 2, 16, 5, 19, 0, 3, 17, 21, 23, 6, 15, 9, 13, 0, 20, 0] Best cost: 4560.272 | Path: [0, 11, 7, 1, 8, 18, 10, 0, 4, 22, 12, 2, 16, 5, 19, 0, 3, 17, 21, 23, 6, 15, 9, 13, 0, 20, 0] OPTIMIZING each tour... Current: [[0, 11, 7, 1, 8, 18, 10, 0], [0, 4, 22, 12, 2, 16, 5, 19, 0], [0, 3, 17, 21, 23, 6, 15, 9, 13, 0], [0, 20, 0]] [1] Cost: 1467.917 to 1446.488 | Optimized: [0, 10, 8, 18, 1, 7, 11, 0] [2] Cost: 1101.661 to 1093.351 | Optimized: [0, 19, 5, 16, 2, 12, 22, 4, 0] [3] Cost: 1562.999 to 1552.549 | Optimized: [0, 13, 9, 15, 6, 23, 21, 17, 3, 0] ACO RESULTS [1/380 vol./1446.488 km] Kassel-Wilhelmshöhe -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [2/395 vol./1093.351 km] Kassel-Wilhelmshöhe -> Mainz Hbf -> Aachen Hbf -> Köln Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf -> Hannover Hbf --> Kassel-Wilhelmshöhe [3/365 vol./1552.549 km] Kassel-Wilhelmshöhe -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Mannheim Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [4/ 90 vol./ 427.695 km] Kassel-Wilhelmshöhe -> Würzburg Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4520.083 km.