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: 19 customers
- Berlin Hbf (30 vol.)
- Düsseldorf Hbf (95 vol.)
- Frankfurt Hbf (55 vol.)
- Stuttgart Hbf (75 vol.)
- Dresden Hbf (85 vol.)
- Hamburg Hbf (35 vol.)
- Bremen Hbf (60 vol.)
- Leipzig Hbf (100 vol.)
- Dortmund Hbf (55 vol.)
- Nürnberg Hbf (75 vol.)
- Karlsruhe Hbf (100 vol.)
- Köln Hbf (60 vol.)
- Mannheim Hbf (45 vol.)
- Kiel Hbf (90 vol.)
- Mainz Hbf (75 vol.)
- Würzburg Hbf (75 vol.)
- Saarbrücken Hbf (60 vol.)
- Osnabrück Hbf (100 vol.)
- Freiburg Hbf (40 vol.)
Tour 1
COST: 1446.488 km
LOAD: 400 vol.
- Bremen Hbf | 60 vol.
- Hamburg Hbf | 35 vol.
- Kiel Hbf | 90 vol.
- Berlin Hbf | 30 vol.
- Dresden Hbf | 85 vol.
- Leipzig Hbf | 100 vol.
Tour 2
COST: 811.277 km
LOAD: 385 vol.
- Mainz Hbf | 75 vol.
- Köln Hbf | 60 vol.
- Düsseldorf Hbf | 95 vol.
- Dortmund Hbf | 55 vol.
- Osnabrück Hbf | 100 vol.
Tour 3
COST: 1217.029 km
LOAD: 375 vol.
- Saarbrücken Hbf | 60 vol.
- Freiburg Hbf | 40 vol.
- Karlsruhe Hbf | 100 vol.
- Stuttgart Hbf | 75 vol.
- Mannheim Hbf | 45 vol.
- Frankfurt Hbf | 55 vol.
Tour 4
COST: 639.001 km
LOAD: 150 vol.
- Würzburg Hbf | 75 vol.
- Nürnberg Hbf | 75 vol.
LOAD: 400 vol.
- Bremen Hbf | 60 vol.
- Hamburg Hbf | 35 vol.
- Kiel Hbf | 90 vol.
- Berlin Hbf | 30 vol.
- Dresden Hbf | 85 vol.
- Leipzig Hbf | 100 vol.
LOAD: 385 vol.
- Mainz Hbf | 75 vol.
- Köln Hbf | 60 vol.
- Düsseldorf Hbf | 95 vol.
- Dortmund Hbf | 55 vol.
- Osnabrück Hbf | 100 vol.
LOAD: 375 vol.
- Saarbrücken Hbf | 60 vol.
- Freiburg Hbf | 40 vol.
- Karlsruhe Hbf | 100 vol.
- Stuttgart Hbf | 75 vol.
- Mannheim Hbf | 45 vol.
- Frankfurt Hbf | 55 vol.
LOAD: 150 vol.
- Würzburg Hbf | 75 vol.
- Nürnberg Hbf | 75 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, 30, 95, 55, 0, 0, 75, 85, 35, 0, 60, 100, 55, 75, 100, 0, 60, 45, 90, 75, 75, 60, 100, 40] ITERATION Generation: #1 Best cost: 5505.225 | Path: [0, 1, 7, 11, 13, 20, 8, 0, 12, 2, 16, 3, 19, 17, 0, 22, 10, 18, 21, 23, 0, 14, 6, 0] Best cost: 4780.878 | Path: [0, 3, 19, 17, 14, 6, 23, 0, 22, 10, 8, 18, 1, 7, 0, 12, 2, 16, 20, 13, 0, 11, 21, 0] Best cost: 4294.877 | Path: [0, 11, 7, 1, 8, 18, 10, 0, 3, 19, 17, 14, 6, 23, 0, 22, 12, 2, 16, 21, 0, 13, 20, 0] Best cost: 4279.742 | Path: [0, 11, 7, 1, 18, 8, 10, 0, 22, 12, 2, 16, 19, 0, 20, 13, 6, 14, 17, 0, 3, 21, 23, 0] Best cost: 4265.862 | Path: [0, 11, 7, 1, 8, 18, 10, 0, 22, 12, 2, 16, 3, 0, 20, 13, 6, 14, 17, 0, 19, 21, 23, 0] Generation: #2 Best cost: 4153.581 | Path: [0, 11, 7, 1, 8, 18, 10, 0, 22, 12, 2, 16, 3, 0, 19, 17, 14, 6, 23, 21, 0, 20, 13, 0] Generation: #3 Best cost: 4140.705 | Path: [0, 11, 7, 1, 8, 18, 10, 0, 22, 12, 2, 16, 19, 0, 3, 17, 14, 6, 23, 21, 0, 20, 13, 0] OPTIMIZING each tour... Current: [[0, 11, 7, 1, 8, 18, 10, 0], [0, 22, 12, 2, 16, 19, 0], [0, 3, 17, 14, 6, 23, 21, 0], [0, 20, 13, 0]] [1] Cost: 1467.917 to 1446.488 | Optimized: [0, 10, 8, 18, 1, 7, 11, 0] [2] Cost: 815.578 to 811.277 | Optimized: [0, 19, 16, 2, 12, 22, 0] [3] Cost: 1218.209 to 1217.029 | Optimized: [0, 21, 23, 14, 6, 17, 3, 0] ACO RESULTS [1/400 vol./1446.488 km] Kassel-Wilhelmshöhe -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [2/385 vol./ 811.277 km] Kassel-Wilhelmshöhe -> Mainz Hbf -> Köln Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf --> Kassel-Wilhelmshöhe [3/375 vol./1217.029 km] Kassel-Wilhelmshöhe -> Saarbrücken Hbf -> Freiburg Hbf -> Karlsruhe Hbf -> Stuttgart Hbf -> Mannheim Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [4/150 vol./ 639.001 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Nürnberg Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4113.795 km.