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 (40 vol.)
- Düsseldorf Hbf (20 vol.)
- Frankfurt Hbf (75 vol.)
- Hannover Hbf (70 vol.)
- Aachen Hbf (65 vol.)
- Stuttgart Hbf (25 vol.)
- Dresden Hbf (50 vol.)
- Hamburg Hbf (90 vol.)
- Leipzig Hbf (70 vol.)
- Dortmund Hbf (95 vol.)
- Nürnberg Hbf (25 vol.)
- Karlsruhe Hbf (25 vol.)
- Köln Hbf (95 vol.)
- Mannheim Hbf (40 vol.)
- Kiel Hbf (70 vol.)
- Mainz Hbf (70 vol.)
- Würzburg Hbf (100 vol.)
- Osnabrück Hbf (60 vol.)
- Freiburg Hbf (65 vol.)
Tour 1
COST: 1173.087 km
LOAD: 400 vol.
- Osnabrück Hbf | 60 vol.
- Dortmund Hbf | 95 vol.
- Düsseldorf Hbf | 20 vol.
- Köln Hbf | 95 vol.
- Aachen Hbf | 65 vol.
- Mannheim Hbf | 40 vol.
- Karlsruhe Hbf | 25 vol.
Tour 2
COST: 1363.492 km
LOAD: 390 vol.
- Hannover Hbf | 70 vol.
- Hamburg Hbf | 90 vol.
- Kiel Hbf | 70 vol.
- Berlin Hbf | 40 vol.
- Dresden Hbf | 50 vol.
- Leipzig Hbf | 70 vol.
Tour 3
COST: 1250.78 km
LOAD: 360 vol.
- Würzburg Hbf | 100 vol.
- Nürnberg Hbf | 25 vol.
- Stuttgart Hbf | 25 vol.
- Freiburg Hbf | 65 vol.
- Mainz Hbf | 70 vol.
- Frankfurt Hbf | 75 vol.
LOAD: 400 vol.
- Osnabrück Hbf | 60 vol.
- Dortmund Hbf | 95 vol.
- Düsseldorf Hbf | 20 vol.
- Köln Hbf | 95 vol.
- Aachen Hbf | 65 vol.
- Mannheim Hbf | 40 vol.
- Karlsruhe Hbf | 25 vol.
LOAD: 390 vol.
- Hannover Hbf | 70 vol.
- Hamburg Hbf | 90 vol.
- Kiel Hbf | 70 vol.
- Berlin Hbf | 40 vol.
- Dresden Hbf | 50 vol.
- Leipzig Hbf | 70 vol.
LOAD: 360 vol.
- Würzburg Hbf | 100 vol.
- Nürnberg Hbf | 25 vol.
- Stuttgart Hbf | 25 vol.
- Freiburg Hbf | 65 vol.
- Mainz Hbf | 70 vol.
- Frankfurt 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: 1150 vol. | Vehicle capacity: 400 vol. Loads: [0, 40, 20, 75, 70, 65, 25, 50, 90, 0, 0, 70, 95, 25, 25, 0, 95, 40, 70, 70, 100, 0, 60, 65] ITERATION Generation: #1 Best cost: 5022.416 | Path: [0, 1, 7, 11, 4, 22, 12, 0, 3, 19, 17, 14, 6, 20, 13, 2, 0, 16, 5, 8, 18, 23, 0] Best cost: 4263.728 | Path: [0, 2, 16, 5, 12, 22, 17, 14, 0, 4, 8, 18, 1, 11, 7, 0, 3, 19, 20, 13, 6, 23, 0] Best cost: 4006.757 | Path: [0, 22, 12, 2, 16, 5, 17, 14, 0, 4, 8, 18, 1, 11, 7, 0, 3, 19, 20, 13, 6, 23, 0] Best cost: 3939.367 | Path: [0, 11, 7, 1, 8, 18, 4, 0, 22, 12, 2, 16, 5, 17, 14, 0, 19, 3, 20, 13, 6, 23, 0] Best cost: 3905.970 | Path: [0, 22, 12, 2, 16, 5, 14, 6, 0, 3, 19, 17, 23, 20, 13, 0, 4, 8, 18, 1, 7, 11, 0] Generation: #2 Best cost: 3882.371 | Path: [0, 4, 8, 18, 1, 11, 7, 0, 22, 12, 2, 16, 5, 17, 14, 0, 20, 13, 6, 23, 19, 3, 0] Best cost: 3846.881 | Path: [0, 11, 7, 1, 8, 18, 4, 0, 22, 12, 2, 16, 5, 17, 14, 0, 20, 13, 6, 23, 3, 19, 0] Best cost: 3787.359 | Path: [0, 22, 12, 2, 16, 5, 17, 14, 0, 4, 8, 18, 1, 7, 11, 0, 20, 13, 6, 23, 19, 3, 0] OPTIMIZING each tour... Current: [[0, 22, 12, 2, 16, 5, 17, 14, 0], [0, 4, 8, 18, 1, 7, 11, 0], [0, 20, 13, 6, 23, 19, 3, 0]] No changes made. ACO RESULTS [1/400 vol./1173.087 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Aachen Hbf -> Mannheim Hbf -> Karlsruhe Hbf --> Kassel-Wilhelmshöhe [2/390 vol./1363.492 km] Kassel-Wilhelmshöhe -> Hannover Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [3/360 vol./1250.780 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Nürnberg Hbf -> Stuttgart Hbf -> Freiburg Hbf -> Mainz Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3787.359 km.