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 (25 vol.)
- Düsseldorf Hbf (50 vol.)
- Hannover Hbf (85 vol.)
- Stuttgart Hbf (40 vol.)
- Dresden Hbf (95 vol.)
- Hamburg Hbf (20 vol.)
- Bremen Hbf (95 vol.)
- Leipzig Hbf (35 vol.)
- Dortmund Hbf (70 vol.)
- Karlsruhe Hbf (75 vol.)
- Ulm Hbf (55 vol.)
- Köln Hbf (100 vol.)
- Mannheim Hbf (85 vol.)
- Kiel Hbf (55 vol.)
- Mainz Hbf (35 vol.)
- Würzburg Hbf (65 vol.)
Tour 1
COST: 1549.55 km
LOAD: 395 vol.
- Dortmund Hbf | 70 vol.
- Bremen Hbf | 95 vol.
- Hamburg Hbf | 20 vol.
- Kiel Hbf | 55 vol.
- Berlin Hbf | 25 vol.
- Dresden Hbf | 95 vol.
- Leipzig Hbf | 35 vol.
Tour 2
COST: 960.607 km
LOAD: 355 vol.
- Würzburg Hbf | 65 vol.
- Ulm Hbf | 55 vol.
- Stuttgart Hbf | 40 vol.
- Karlsruhe Hbf | 75 vol.
- Mannheim Hbf | 85 vol.
- Mainz Hbf | 35 vol.
Tour 3
COST: 735.175 km
LOAD: 235 vol.
- Köln Hbf | 100 vol.
- Düsseldorf Hbf | 50 vol.
- Hannover Hbf | 85 vol.
LOAD: 395 vol.
- Dortmund Hbf | 70 vol.
- Bremen Hbf | 95 vol.
- Hamburg Hbf | 20 vol.
- Kiel Hbf | 55 vol.
- Berlin Hbf | 25 vol.
- Dresden Hbf | 95 vol.
- Leipzig Hbf | 35 vol.
LOAD: 355 vol.
- Würzburg Hbf | 65 vol.
- Ulm Hbf | 55 vol.
- Stuttgart Hbf | 40 vol.
- Karlsruhe Hbf | 75 vol.
- Mannheim Hbf | 85 vol.
- Mainz Hbf | 35 vol.
LOAD: 235 vol.
- Köln Hbf | 100 vol.
- Düsseldorf Hbf | 50 vol.
- Hannover Hbf | 85 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: 985 vol. | Vehicle capacity: 400 vol. Loads: [0, 25, 50, 0, 85, 0, 40, 95, 20, 0, 95, 35, 70, 0, 75, 55, 100, 85, 55, 35, 65, 0, 0, 0] ITERATION Generation: #1 Best cost: 4541.398 | Path: [0, 1, 7, 11, 4, 10, 8, 19, 0, 12, 2, 16, 14, 17, 0, 20, 6, 15, 18, 0] Best cost: 3953.460 | Path: [0, 2, 16, 12, 4, 10, 0, 20, 6, 14, 17, 19, 15, 11, 0, 8, 18, 1, 7, 0] Best cost: 3770.369 | Path: [0, 6, 15, 14, 17, 19, 20, 11, 0, 12, 2, 16, 10, 4, 0, 7, 1, 8, 18, 0] Best cost: 3384.062 | Path: [0, 11, 7, 1, 18, 8, 10, 12, 0, 20, 19, 17, 14, 6, 15, 0, 2, 16, 4, 0] Best cost: 3361.726 | Path: [0, 7, 11, 1, 8, 18, 10, 12, 0, 19, 17, 14, 6, 15, 20, 0, 4, 2, 16, 0] Best cost: 3270.790 | Path: [0, 11, 7, 1, 8, 18, 10, 12, 0, 19, 17, 14, 6, 15, 20, 0, 4, 16, 2, 0] Best cost: 3267.457 | Path: [0, 11, 7, 1, 8, 18, 10, 12, 0, 19, 17, 14, 6, 15, 20, 0, 2, 16, 4, 0] OPTIMIZING each tour... Current: [[0, 11, 7, 1, 8, 18, 10, 12, 0], [0, 19, 17, 14, 6, 15, 20, 0], [0, 2, 16, 4, 0]] [1] Cost: 1571.207 to 1549.550 | Optimized: [0, 12, 10, 8, 18, 1, 7, 11, 0] [2] Cost: 960.766 to 960.607 | Optimized: [0, 20, 15, 6, 14, 17, 19, 0] [3] Cost: 735.484 to 735.175 | Optimized: [0, 16, 2, 4, 0] ACO RESULTS [1/395 vol./1549.550 km] Kassel-Wilhelmshöhe -> Dortmund Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [2/355 vol./ 960.607 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Mannheim Hbf -> Mainz Hbf --> Kassel-Wilhelmshöhe [3/235 vol./ 735.175 km] Kassel-Wilhelmshöhe -> Köln Hbf -> Düsseldorf Hbf -> Hannover Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3245.332 km.