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: 20 customers
- Berlin Hbf (35 vol.)
- Düsseldorf Hbf (55 vol.)
- Frankfurt Hbf (85 vol.)
- Hannover Hbf (35 vol.)
- Aachen Hbf (80 vol.)
- Stuttgart Hbf (70 vol.)
- Dresden Hbf (90 vol.)
- Hamburg Hbf (70 vol.)
- München Hbf (95 vol.)
- Bremen Hbf (25 vol.)
- Leipzig Hbf (50 vol.)
- Dortmund Hbf (40 vol.)
- Nürnberg Hbf (80 vol.)
- Karlsruhe Hbf (75 vol.)
- Köln Hbf (50 vol.)
- Kiel Hbf (45 vol.)
- Mainz Hbf (60 vol.)
- Würzburg Hbf (25 vol.)
- Osnabrück Hbf (50 vol.)
- Freiburg Hbf (90 vol.)
Tour 1
COST: 944.868 km
LOAD: 395 vol.
- Würzburg Hbf | 25 vol.
- Frankfurt Hbf | 85 vol.
- Mainz Hbf | 60 vol.
- Köln Hbf | 50 vol.
- Aachen Hbf | 80 vol.
- Düsseldorf Hbf | 55 vol.
- Dortmund Hbf | 40 vol.
Tour 2
COST: 1585.754 km
LOAD: 400 vol.
- Osnabrück Hbf | 50 vol.
- Hannover Hbf | 35 vol.
- Bremen Hbf | 25 vol.
- Hamburg Hbf | 70 vol.
- Kiel Hbf | 45 vol.
- Berlin Hbf | 35 vol.
- Dresden Hbf | 90 vol.
- Leipzig Hbf | 50 vol.
Tour 3
COST: 1373.493 km
LOAD: 330 vol.
- München Hbf | 95 vol.
- Stuttgart Hbf | 70 vol.
- Karlsruhe Hbf | 75 vol.
- Freiburg Hbf | 90 vol.
Tour 4
COST: 629.353 km
LOAD: 80 vol.
- Nürnberg Hbf | 80 vol.
LOAD: 395 vol.
- Würzburg Hbf | 25 vol.
- Frankfurt Hbf | 85 vol.
- Mainz Hbf | 60 vol.
- Köln Hbf | 50 vol.
- Aachen Hbf | 80 vol.
- Düsseldorf Hbf | 55 vol.
- Dortmund Hbf | 40 vol.
LOAD: 400 vol.
- Osnabrück Hbf | 50 vol.
- Hannover Hbf | 35 vol.
- Bremen Hbf | 25 vol.
- Hamburg Hbf | 70 vol.
- Kiel Hbf | 45 vol.
- Berlin Hbf | 35 vol.
- Dresden Hbf | 90 vol.
- Leipzig Hbf | 50 vol.
LOAD: 330 vol.
- München Hbf | 95 vol.
- Stuttgart Hbf | 70 vol.
- Karlsruhe Hbf | 75 vol.
- Freiburg Hbf | 90 vol.
LOAD: 80 vol.
- Nürnberg Hbf | 80 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: 1205 vol. | Vehicle capacity: 400 vol. Loads: [0, 35, 55, 85, 35, 80, 70, 90, 70, 95, 25, 50, 40, 80, 75, 0, 50, 0, 45, 60, 25, 0, 50, 90] ITERATION Generation: #1 Best cost: 5067.875 | Path: [0, 1, 11, 7, 4, 10, 8, 18, 22, 0, 12, 2, 16, 5, 3, 19, 20, 0, 14, 23, 6, 13, 0, 9, 0] Best cost: 4769.398 | Path: [0, 7, 11, 1, 8, 18, 4, 10, 22, 0, 12, 2, 16, 5, 3, 19, 20, 0, 13, 9, 6, 14, 0, 23, 0] Best cost: 4730.074 | Path: [0, 11, 7, 1, 8, 18, 10, 4, 22, 0, 12, 2, 16, 5, 19, 3, 20, 0, 13, 6, 14, 23, 0, 9, 0] Best cost: 4664.241 | Path: [0, 20, 3, 19, 2, 16, 5, 12, 0, 11, 7, 1, 18, 8, 10, 22, 4, 0, 13, 9, 6, 14, 0, 23, 0] Best cost: 4650.769 | Path: [0, 11, 7, 1, 8, 18, 10, 4, 22, 0, 12, 2, 16, 5, 3, 19, 20, 0, 13, 9, 6, 14, 0, 23, 0] Best cost: 4615.389 | Path: [0, 11, 7, 1, 8, 18, 10, 4, 22, 0, 12, 2, 16, 5, 19, 3, 20, 0, 14, 6, 9, 13, 0, 23, 0] Best cost: 4600.308 | Path: [0, 11, 7, 1, 8, 18, 10, 4, 22, 0, 12, 2, 16, 5, 19, 3, 20, 0, 13, 9, 6, 14, 0, 23, 0] Best cost: 4586.021 | Path: [0, 12, 2, 16, 5, 19, 3, 20, 0, 4, 22, 10, 8, 18, 1, 7, 11, 0, 13, 9, 6, 14, 0, 23, 0] Generation: #2 Best cost: 4574.350 | Path: [0, 9, 6, 14, 23, 19, 0, 22, 12, 2, 16, 5, 3, 20, 0, 4, 10, 8, 18, 1, 7, 11, 0, 13, 0] Generation: #6 Best cost: 4558.157 | Path: [0, 12, 2, 16, 5, 19, 3, 20, 0, 4, 22, 10, 8, 18, 1, 7, 11, 0, 9, 6, 14, 23, 0, 13, 0] OPTIMIZING each tour... Current: [[0, 12, 2, 16, 5, 19, 3, 20, 0], [0, 4, 22, 10, 8, 18, 1, 7, 11, 0], [0, 9, 6, 14, 23, 0], [0, 13, 0]] [1] Cost: 959.916 to 944.868 | Optimized: [0, 20, 3, 19, 16, 5, 2, 12, 0] [2] Cost: 1595.395 to 1585.754 | Optimized: [0, 22, 4, 10, 8, 18, 1, 7, 11, 0] ACO RESULTS [1/395 vol./ 944.868 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Frankfurt Hbf -> Mainz Hbf -> Köln Hbf -> Aachen Hbf -> Düsseldorf Hbf -> Dortmund Hbf --> Kassel-Wilhelmshöhe [2/400 vol./1585.754 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Hannover Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [3/330 vol./1373.493 km] Kassel-Wilhelmshöhe -> München Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf --> Kassel-Wilhelmshöhe [4/ 80 vol./ 629.353 km] Kassel-Wilhelmshöhe -> Nürnberg Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4533.468 km.