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: 17 customers
- Berlin Hbf (100 vol.)
- Düsseldorf Hbf (30 vol.)
- Frankfurt Hbf (50 vol.)
- Hannover Hbf (100 vol.)
- Aachen Hbf (50 vol.)
- Stuttgart Hbf (70 vol.)
- Dresden Hbf (75 vol.)
- München Hbf (20 vol.)
- Leipzig Hbf (30 vol.)
- Dortmund Hbf (50 vol.)
- Nürnberg Hbf (90 vol.)
- Karlsruhe Hbf (80 vol.)
- Köln Hbf (85 vol.)
- Kiel Hbf (95 vol.)
- Mainz Hbf (20 vol.)
- Würzburg Hbf (20 vol.)
- Osnabrück Hbf (70 vol.)
Tour 1
COST: 1362.303 km
LOAD: 400 vol.
- Hannover Hbf | 100 vol.
- Kiel Hbf | 95 vol.
- Berlin Hbf | 100 vol.
- Dresden Hbf | 75 vol.
- Leipzig Hbf | 30 vol.
Tour 2
COST: 1514.082 km
LOAD: 400 vol.
- Würzburg Hbf | 20 vol.
- Nürnberg Hbf | 90 vol.
- München Hbf | 20 vol.
- Stuttgart Hbf | 70 vol.
- Karlsruhe Hbf | 80 vol.
- Frankfurt Hbf | 50 vol.
- Mainz Hbf | 20 vol.
- Aachen Hbf | 50 vol.
Tour 3
COST: 647.196 km
LOAD: 235 vol.
- Dortmund Hbf | 50 vol.
- Düsseldorf Hbf | 30 vol.
- Köln Hbf | 85 vol.
- Osnabrück Hbf | 70 vol.
LOAD: 400 vol.
- Hannover Hbf | 100 vol.
- Kiel Hbf | 95 vol.
- Berlin Hbf | 100 vol.
- Dresden Hbf | 75 vol.
- Leipzig Hbf | 30 vol.
LOAD: 400 vol.
- Würzburg Hbf | 20 vol.
- Nürnberg Hbf | 90 vol.
- München Hbf | 20 vol.
- Stuttgart Hbf | 70 vol.
- Karlsruhe Hbf | 80 vol.
- Frankfurt Hbf | 50 vol.
- Mainz Hbf | 20 vol.
- Aachen Hbf | 50 vol.
LOAD: 235 vol.
- Dortmund Hbf | 50 vol.
- Düsseldorf Hbf | 30 vol.
- Köln Hbf | 85 vol.
- Osnabrück Hbf | 70 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: 1035 vol. | Vehicle capacity: 400 vol. Loads: [0, 100, 30, 50, 100, 50, 70, 75, 0, 20, 0, 30, 50, 90, 80, 0, 85, 0, 95, 20, 20, 0, 70, 0] ITERATION Generation: #1 Best cost: 4494.868 | Path: [0, 1, 11, 7, 13, 20, 3, 19, 0, 22, 4, 12, 2, 16, 5, 0, 14, 6, 9, 18, 0] Best cost: 4250.657 | Path: [0, 2, 16, 5, 12, 22, 4, 0, 19, 3, 20, 13, 9, 6, 14, 11, 0, 1, 7, 18, 0] Best cost: 4016.867 | Path: [0, 5, 16, 2, 12, 22, 4, 0, 3, 19, 20, 6, 14, 13, 9, 11, 0, 7, 1, 18, 0] Best cost: 3876.776 | Path: [0, 4, 22, 12, 2, 16, 5, 0, 3, 19, 14, 6, 20, 13, 9, 11, 0, 7, 1, 18, 0] Best cost: 3874.688 | Path: [0, 3, 19, 14, 6, 20, 13, 9, 11, 0, 4, 22, 12, 2, 16, 5, 0, 18, 1, 7, 0] Best cost: 3868.876 | Path: [0, 5, 16, 2, 12, 22, 4, 0, 3, 19, 14, 6, 20, 13, 9, 11, 0, 7, 1, 18, 0] Best cost: 3851.612 | Path: [0, 16, 2, 5, 12, 22, 4, 0, 20, 3, 19, 14, 6, 9, 13, 11, 0, 18, 1, 7, 0] Best cost: 3849.180 | Path: [0, 5, 16, 2, 12, 22, 4, 0, 3, 19, 14, 6, 9, 13, 20, 11, 0, 18, 1, 7, 0] Best cost: 3830.220 | Path: [0, 14, 6, 20, 13, 9, 7, 11, 0, 22, 12, 2, 16, 5, 19, 3, 0, 4, 18, 1, 0] Generation: #4 Best cost: 3631.248 | Path: [0, 11, 7, 1, 18, 4, 0, 3, 19, 20, 13, 9, 6, 14, 5, 0, 12, 2, 16, 22, 0] OPTIMIZING each tour... Current: [[0, 11, 7, 1, 18, 4, 0], [0, 3, 19, 20, 13, 9, 6, 14, 5, 0], [0, 12, 2, 16, 22, 0]] [1] Cost: 1366.633 to 1362.303 | Optimized: [0, 4, 18, 1, 7, 11, 0] [2] Cost: 1617.419 to 1514.082 | Optimized: [0, 20, 13, 9, 6, 14, 3, 19, 5, 0] ACO RESULTS [1/400 vol./1362.303 km] Kassel-Wilhelmshöhe -> Hannover Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [2/400 vol./1514.082 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Nürnberg Hbf -> München Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Frankfurt Hbf -> Mainz Hbf -> Aachen Hbf --> Kassel-Wilhelmshöhe [3/235 vol./ 647.196 km] Kassel-Wilhelmshöhe -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Osnabrück Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3523.581 km.