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: 21 customers
- Berlin Hbf (75 vol.)
- Düsseldorf Hbf (65 vol.)
- Frankfurt Hbf (95 vol.)
- Hannover Hbf (30 vol.)
- Aachen Hbf (25 vol.)
- Stuttgart Hbf (80 vol.)
- München Hbf (80 vol.)
- Bremen Hbf (30 vol.)
- Leipzig Hbf (70 vol.)
- Dortmund Hbf (100 vol.)
- Nürnberg Hbf (35 vol.)
- Karlsruhe Hbf (45 vol.)
- Ulm Hbf (70 vol.)
- Köln Hbf (90 vol.)
- Mannheim Hbf (50 vol.)
- Kiel Hbf (35 vol.)
- Mainz Hbf (50 vol.)
- Würzburg Hbf (60 vol.)
- Saarbrücken Hbf (90 vol.)
- Osnabrück Hbf (90 vol.)
- Freiburg Hbf (20 vol.)
Tour 1
COST: 1400.424 km
LOAD: 390 vol.
- Würzburg Hbf | 60 vol.
- Nürnberg Hbf | 35 vol.
- München Hbf | 80 vol.
- Ulm Hbf | 70 vol.
- Stuttgart Hbf | 80 vol.
- Karlsruhe Hbf | 45 vol.
- Freiburg Hbf | 20 vol.
Tour 2
COST: 1020.931 km
LOAD: 375 vol.
- Frankfurt Hbf | 95 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 50 vol.
- Saarbrücken Hbf | 90 vol.
- Aachen Hbf | 25 vol.
- Düsseldorf Hbf | 65 vol.
Tour 3
COST: 1447.426 km
LOAD: 330 vol.
- Osnabrück Hbf | 90 vol.
- Hannover Hbf | 30 vol.
- Bremen Hbf | 30 vol.
- Kiel Hbf | 35 vol.
- Berlin Hbf | 75 vol.
- Leipzig Hbf | 70 vol.
Tour 4
COST: 498.486 km
LOAD: 190 vol.
- Dortmund Hbf | 100 vol.
- Köln Hbf | 90 vol.
LOAD: 390 vol.
- Würzburg Hbf | 60 vol.
- Nürnberg Hbf | 35 vol.
- München Hbf | 80 vol.
- Ulm Hbf | 70 vol.
- Stuttgart Hbf | 80 vol.
- Karlsruhe Hbf | 45 vol.
- Freiburg Hbf | 20 vol.
LOAD: 375 vol.
- Frankfurt Hbf | 95 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 50 vol.
- Saarbrücken Hbf | 90 vol.
- Aachen Hbf | 25 vol.
- Düsseldorf Hbf | 65 vol.
LOAD: 330 vol.
- Osnabrück Hbf | 90 vol.
- Hannover Hbf | 30 vol.
- Bremen Hbf | 30 vol.
- Kiel Hbf | 35 vol.
- Berlin Hbf | 75 vol.
- Leipzig Hbf | 70 vol.
LOAD: 190 vol.
- Dortmund Hbf | 100 vol.
- Köln 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: 1285 vol. | Vehicle capacity: 400 vol. Loads: [0, 75, 65, 95, 30, 25, 80, 0, 0, 80, 30, 70, 100, 35, 45, 70, 90, 50, 35, 50, 60, 90, 90, 20] ITERATION Generation: #1 Best cost: 5540.824 | Path: [0, 1, 11, 4, 10, 22, 12, 0, 2, 16, 5, 3, 19, 17, 23, 0, 20, 6, 14, 15, 9, 13, 0, 21, 18, 0] Best cost: 5038.298 | Path: [0, 2, 16, 5, 12, 22, 10, 0, 4, 18, 1, 11, 13, 20, 3, 0, 19, 17, 14, 6, 15, 9, 23, 0, 21, 0] Best cost: 4968.430 | Path: [0, 11, 1, 4, 10, 22, 12, 0, 20, 13, 9, 15, 6, 14, 23, 0, 3, 19, 17, 21, 2, 5, 0, 16, 18, 0] Best cost: 4653.254 | Path: [0, 20, 13, 9, 15, 6, 14, 23, 0, 12, 2, 16, 5, 19, 17, 0, 4, 10, 22, 18, 1, 11, 0, 3, 21, 0] Best cost: 4550.097 | Path: [0, 20, 13, 9, 15, 6, 14, 23, 0, 12, 2, 16, 5, 19, 17, 0, 22, 4, 10, 18, 1, 11, 0, 3, 21, 0] Generation: #2 Best cost: 4389.988 | Path: [0, 20, 13, 9, 15, 6, 14, 23, 0, 3, 19, 17, 21, 5, 2, 0, 22, 10, 4, 18, 1, 11, 0, 12, 16, 0] OPTIMIZING each tour... Current: [[0, 20, 13, 9, 15, 6, 14, 23, 0], [0, 3, 19, 17, 21, 5, 2, 0], [0, 22, 10, 4, 18, 1, 11, 0], [0, 12, 16, 0]] [3] Cost: 1470.147 to 1447.426 | Optimized: [0, 22, 4, 10, 18, 1, 11, 0] ACO RESULTS [1/390 vol./1400.424 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf --> Kassel-Wilhelmshöhe [2/375 vol./1020.931 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Düsseldorf Hbf --> Kassel-Wilhelmshöhe [3/330 vol./1447.426 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Hannover Hbf -> Bremen Hbf -> Kiel Hbf -> Berlin Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [4/190 vol./ 498.486 km] Kassel-Wilhelmshöhe -> Dortmund Hbf -> Köln Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4367.267 km.