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: 16 customers
- Berlin Hbf (65 vol.)
- Düsseldorf Hbf (65 vol.)
- Frankfurt Hbf (50 vol.)
- Hannover Hbf (55 vol.)
- Aachen Hbf (95 vol.)
- Stuttgart Hbf (35 vol.)
- Dresden Hbf (55 vol.)
- Hamburg Hbf (40 vol.)
- München Hbf (65 vol.)
- Bremen Hbf (60 vol.)
- Leipzig Hbf (90 vol.)
- Dortmund Hbf (35 vol.)
- Karlsruhe Hbf (60 vol.)
- Köln Hbf (85 vol.)
- Mainz Hbf (80 vol.)
- Saarbrücken Hbf (55 vol.)
Tour 1
COST: 1500.636 km
LOAD: 380 vol.
- München Hbf | 65 vol.
- Stuttgart Hbf | 35 vol.
- Karlsruhe Hbf | 60 vol.
- Saarbrücken Hbf | 55 vol.
- Mainz Hbf | 80 vol.
- Frankfurt Hbf | 50 vol.
- Dortmund Hbf | 35 vol.
Tour 2
COST: 1287.425 km
LOAD: 365 vol.
- Hannover Hbf | 55 vol.
- Bremen Hbf | 60 vol.
- Hamburg Hbf | 40 vol.
- Berlin Hbf | 65 vol.
- Dresden Hbf | 55 vol.
- Leipzig Hbf | 90 vol.
Tour 3
COST: 621.944 km
LOAD: 245 vol.
- Köln Hbf | 85 vol.
- Aachen Hbf | 95 vol.
- Düsseldorf Hbf | 65 vol.
LOAD: 380 vol.
- München Hbf | 65 vol.
- Stuttgart Hbf | 35 vol.
- Karlsruhe Hbf | 60 vol.
- Saarbrücken Hbf | 55 vol.
- Mainz Hbf | 80 vol.
- Frankfurt Hbf | 50 vol.
- Dortmund Hbf | 35 vol.
LOAD: 365 vol.
- Hannover Hbf | 55 vol.
- Bremen Hbf | 60 vol.
- Hamburg Hbf | 40 vol.
- Berlin Hbf | 65 vol.
- Dresden Hbf | 55 vol.
- Leipzig Hbf | 90 vol.
LOAD: 245 vol.
- Köln Hbf | 85 vol.
- Aachen Hbf | 95 vol.
- Düsseldorf Hbf | 65 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: 990 vol. | Vehicle capacity: 400 vol. Loads: [0, 65, 65, 50, 55, 95, 35, 55, 40, 65, 60, 90, 35, 0, 60, 0, 85, 0, 0, 80, 0, 55, 0, 0] ITERATION Generation: #1 Best cost: 3688.413 | Path: [0, 1, 7, 11, 4, 10, 8, 12, 0, 3, 19, 21, 14, 6, 9, 0, 2, 16, 5, 0] Best cost: 3685.137 | Path: [0, 9, 6, 14, 19, 3, 21, 12, 0, 4, 10, 8, 1, 11, 7, 0, 16, 2, 5, 0] Best cost: 3676.486 | Path: [0, 19, 3, 14, 6, 9, 21, 12, 0, 4, 10, 8, 1, 11, 7, 0, 16, 2, 5, 0] Best cost: 3569.881 | Path: [0, 14, 6, 9, 21, 19, 3, 12, 0, 11, 7, 1, 8, 10, 4, 0, 2, 16, 5, 0] Best cost: 3566.239 | Path: [0, 4, 10, 8, 1, 7, 11, 12, 0, 3, 19, 21, 14, 6, 9, 0, 2, 16, 5, 0] Best cost: 3525.123 | Path: [0, 9, 6, 14, 21, 19, 3, 12, 0, 4, 10, 8, 1, 11, 7, 0, 2, 16, 5, 0] Best cost: 3469.463 | Path: [0, 11, 7, 1, 8, 10, 4, 12, 0, 3, 19, 21, 14, 6, 9, 0, 16, 2, 5, 0] Best cost: 3430.111 | Path: [0, 9, 6, 14, 21, 19, 3, 12, 0, 4, 10, 8, 1, 7, 11, 0, 2, 16, 5, 0] Generation: #5 Best cost: 3429.260 | Path: [0, 9, 6, 14, 21, 19, 3, 12, 0, 4, 10, 8, 1, 7, 11, 0, 5, 16, 2, 0] OPTIMIZING each tour... Current: [[0, 9, 6, 14, 21, 19, 3, 12, 0], [0, 4, 10, 8, 1, 7, 11, 0], [0, 5, 16, 2, 0]] [3] Cost: 641.199 to 621.944 | Optimized: [0, 16, 5, 2, 0] ACO RESULTS [1/380 vol./1500.636 km] Kassel-Wilhelmshöhe -> München Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Saarbrücken Hbf -> Mainz Hbf -> Frankfurt Hbf -> Dortmund Hbf --> Kassel-Wilhelmshöhe [2/365 vol./1287.425 km] Kassel-Wilhelmshöhe -> Hannover Hbf -> Bremen Hbf -> Hamburg Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [3/245 vol./ 621.944 km] Kassel-Wilhelmshöhe -> Köln Hbf -> Aachen Hbf -> Düsseldorf Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3410.005 km.