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: 18 customers
- Düsseldorf Hbf (50 vol.)
- Frankfurt Hbf (35 vol.)
- Hannover Hbf (55 vol.)
- Aachen Hbf (75 vol.)
- Stuttgart Hbf (35 vol.)
- Dresden Hbf (25 vol.)
- München Hbf (25 vol.)
- Bremen Hbf (75 vol.)
- Leipzig Hbf (35 vol.)
- Nürnberg Hbf (65 vol.)
- Karlsruhe Hbf (80 vol.)
- Köln Hbf (20 vol.)
- Kiel Hbf (55 vol.)
- Mainz Hbf (65 vol.)
- Würzburg Hbf (25 vol.)
- Saarbrücken Hbf (65 vol.)
- Osnabrück Hbf (65 vol.)
- Freiburg Hbf (75 vol.)
Tour 1
COST: 1490.753 km
LOAD: 395 vol.
- Köln Hbf | 20 vol.
- Aachen Hbf | 75 vol.
- Düsseldorf Hbf | 50 vol.
- Osnabrück Hbf | 65 vol.
- Bremen Hbf | 75 vol.
- Hannover Hbf | 55 vol.
- Kiel Hbf | 55 vol.
Tour 2
COST: 1171.547 km
LOAD: 380 vol.
- Würzburg Hbf | 25 vol.
- Stuttgart Hbf | 35 vol.
- Karlsruhe Hbf | 80 vol.
- Freiburg Hbf | 75 vol.
- Saarbrücken Hbf | 65 vol.
- Mainz Hbf | 65 vol.
- Frankfurt Hbf | 35 vol.
Tour 3
COST: 1337.608 km
LOAD: 150 vol.
- Nürnberg Hbf | 65 vol.
- München Hbf | 25 vol.
- Dresden Hbf | 25 vol.
- Leipzig Hbf | 35 vol.
LOAD: 395 vol.
- Köln Hbf | 20 vol.
- Aachen Hbf | 75 vol.
- Düsseldorf Hbf | 50 vol.
- Osnabrück Hbf | 65 vol.
- Bremen Hbf | 75 vol.
- Hannover Hbf | 55 vol.
- Kiel Hbf | 55 vol.
LOAD: 380 vol.
- Würzburg Hbf | 25 vol.
- Stuttgart Hbf | 35 vol.
- Karlsruhe Hbf | 80 vol.
- Freiburg Hbf | 75 vol.
- Saarbrücken Hbf | 65 vol.
- Mainz Hbf | 65 vol.
- Frankfurt Hbf | 35 vol.
LOAD: 150 vol.
- Nürnberg Hbf | 65 vol.
- München Hbf | 25 vol.
- Dresden Hbf | 25 vol.
- Leipzig Hbf | 35 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: 925 vol. | Vehicle capacity: 400 vol. Loads: [0, 0, 50, 35, 55, 75, 35, 25, 0, 25, 75, 35, 0, 65, 80, 0, 20, 0, 55, 65, 25, 65, 65, 75] ITERATION Generation: #1 Best cost: 4592.893 | Path: [0, 2, 16, 5, 3, 19, 14, 6, 20, 0, 4, 10, 22, 18, 11, 7, 13, 9, 0, 23, 21, 0] Best cost: 4518.968 | Path: [0, 11, 7, 20, 13, 9, 6, 14, 23, 3, 0, 22, 10, 4, 16, 2, 5, 18, 0, 19, 21, 0] Best cost: 4505.381 | Path: [0, 5, 16, 2, 22, 4, 10, 18, 0, 19, 3, 20, 13, 9, 6, 14, 21, 0, 11, 7, 23, 0] Best cost: 4427.652 | Path: [0, 22, 10, 4, 18, 2, 16, 5, 0, 3, 19, 14, 6, 20, 13, 9, 11, 7, 0, 21, 23, 0] Best cost: 4353.029 | Path: [0, 18, 10, 4, 22, 2, 16, 5, 0, 3, 19, 14, 6, 20, 13, 9, 11, 7, 0, 21, 23, 0] Best cost: 4303.154 | Path: [0, 6, 14, 23, 21, 2, 16, 5, 0, 3, 19, 20, 13, 9, 11, 7, 4, 22, 0, 18, 10, 0] Best cost: 4268.694 | Path: [0, 18, 10, 4, 22, 16, 2, 5, 0, 20, 3, 19, 14, 6, 23, 21, 0, 11, 7, 13, 9, 0] Best cost: 4208.344 | Path: [0, 2, 16, 5, 22, 4, 10, 18, 0, 3, 19, 21, 14, 6, 23, 20, 0, 11, 7, 13, 9, 0] Generation: #3 Best cost: 4165.410 | Path: [0, 20, 13, 9, 6, 14, 23, 21, 16, 0, 22, 2, 5, 19, 3, 11, 7, 0, 4, 10, 18, 0] Generation: #7 Best cost: 4101.380 | Path: [0, 22, 10, 4, 18, 2, 16, 5, 0, 3, 19, 21, 23, 14, 6, 20, 0, 11, 7, 13, 9, 0] OPTIMIZING each tour... Current: [[0, 22, 10, 4, 18, 2, 16, 5, 0], [0, 3, 19, 21, 23, 14, 6, 20, 0], [0, 11, 7, 13, 9, 0]] [1] Cost: 1568.304 to 1490.753 | Optimized: [0, 16, 5, 2, 22, 10, 4, 18, 0] [2] Cost: 1174.205 to 1171.547 | Optimized: [0, 20, 6, 14, 23, 21, 19, 3, 0] [3] Cost: 1358.871 to 1337.608 | Optimized: [0, 13, 9, 7, 11, 0] ACO RESULTS [1/395 vol./1490.753 km] Kassel-Wilhelmshöhe -> Köln Hbf -> Aachen Hbf -> Düsseldorf Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hannover Hbf -> Kiel Hbf --> Kassel-Wilhelmshöhe [2/380 vol./1171.547 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Mainz Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [3/150 vol./1337.608 km] Kassel-Wilhelmshöhe -> Nürnberg Hbf -> München Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3999.908 km.