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: 300 vol.
ACTIVE: 18 customers
- Kassel-Wilhelmshöhe (25 vol.)
- Düsseldorf Hbf (45 vol.)
- Frankfurt Hbf (20 vol.)
- Hannover Hbf (25 vol.)
- Aachen Hbf (95 vol.)
- Stuttgart Hbf (95 vol.)
- Hamburg Hbf (85 vol.)
- München Hbf (50 vol.)
- Bremen Hbf (35 vol.)
- Dortmund Hbf (70 vol.)
- Karlsruhe Hbf (75 vol.)
- Köln Hbf (30 vol.)
- Mannheim Hbf (95 vol.)
- Kiel Hbf (40 vol.)
- Mainz Hbf (50 vol.)
- Würzburg Hbf (55 vol.)
- Saarbrücken Hbf (30 vol.)
- Freiburg Hbf (55 vol.)
Tour 1
COST: 1409.247 km
LOAD: 295 vol.
- Frankfurt Hbf | 20 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 95 vol.
- Karlsruhe Hbf | 75 vol.
- Würzburg Hbf | 55 vol.
Tour 2
COST: 1455.44 km
LOAD: 280 vol.
- Kassel-Wilhelmshöhe | 25 vol.
- Dortmund Hbf | 70 vol.
- Hannover Hbf | 25 vol.
- Bremen Hbf | 35 vol.
- Hamburg Hbf | 85 vol.
- Kiel Hbf | 40 vol.
Tour 3
COST: 2043.565 km
LOAD: 260 vol.
- München Hbf | 50 vol.
- Stuttgart Hbf | 95 vol.
- Freiburg Hbf | 55 vol.
- Saarbrücken Hbf | 30 vol.
- Köln Hbf | 30 vol.
Tour 4
COST: 1267.495 km
LOAD: 140 vol.
- Aachen Hbf | 95 vol.
- Düsseldorf Hbf | 45 vol.
LOAD: 295 vol.
- Frankfurt Hbf | 20 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 95 vol.
- Karlsruhe Hbf | 75 vol.
- Würzburg Hbf | 55 vol.
LOAD: 280 vol.
- Kassel-Wilhelmshöhe | 25 vol.
- Dortmund Hbf | 70 vol.
- Hannover Hbf | 25 vol.
- Bremen Hbf | 35 vol.
- Hamburg Hbf | 85 vol.
- Kiel Hbf | 40 vol.
LOAD: 260 vol.
- München Hbf | 50 vol.
- Stuttgart Hbf | 95 vol.
- Freiburg Hbf | 55 vol.
- Saarbrücken Hbf | 30 vol.
- Köln Hbf | 30 vol.
LOAD: 140 vol.
- Aachen Hbf | 95 vol.
- Düsseldorf Hbf | 45 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: [1] Berlin Hbf | Number of cities: 24 | Total loads: 975 vol. | Vehicle capacity: 300 vol. Loads: [25, 0, 45, 20, 25, 95, 95, 0, 85, 50, 35, 0, 70, 0, 75, 0, 30, 95, 40, 50, 55, 30, 0, 55] ITERATION Generation: #1 Best cost: 6946.321 | Path: [1, 0, 3, 19, 17, 14, 21, 1, 8, 18, 10, 4, 12, 2, 1, 9, 6, 20, 16, 23, 1, 5, 1] Best cost: 6849.917 | Path: [1, 2, 16, 12, 5, 3, 21, 1, 4, 10, 8, 18, 0, 20, 1, 19, 17, 14, 23, 1, 6, 9, 1] Best cost: 6540.868 | Path: [1, 4, 10, 8, 18, 12, 2, 1, 0, 20, 19, 3, 17, 21, 1, 6, 14, 23, 9, 1, 16, 5, 1] Best cost: 6490.057 | Path: [1, 9, 6, 14, 23, 3, 1, 8, 18, 4, 10, 2, 16, 0, 1, 20, 19, 17, 21, 12, 1, 5, 1] Best cost: 6401.150 | Path: [1, 23, 14, 17, 3, 19, 1, 8, 18, 10, 4, 0, 12, 1, 16, 2, 5, 21, 6, 1, 20, 9, 1] Best cost: 6382.541 | Path: [1, 20, 3, 19, 17, 14, 1, 8, 18, 10, 4, 0, 12, 1, 2, 16, 5, 21, 23, 1, 9, 6, 1] Best cost: 6336.350 | Path: [1, 14, 17, 19, 3, 20, 1, 8, 18, 10, 4, 0, 12, 1, 9, 6, 23, 21, 2, 1, 16, 5, 1] Best cost: 6319.719 | Path: [1, 20, 3, 19, 17, 14, 1, 8, 18, 10, 4, 0, 12, 1, 9, 6, 23, 21, 16, 1, 2, 5, 1] Best cost: 6308.890 | Path: [1, 20, 3, 19, 17, 14, 1, 18, 8, 10, 4, 0, 12, 1, 9, 6, 23, 21, 16, 1, 2, 5, 1] OPTIMIZING each tour... Current: [[1, 20, 3, 19, 17, 14, 1], [1, 18, 8, 10, 4, 0, 12, 1], [1, 9, 6, 23, 21, 16, 1], [1, 2, 5, 1]] [1] Cost: 1465.825 to 1409.247 | Optimized: [1, 3, 19, 17, 14, 20, 1] [2] Cost: 1531.376 to 1455.440 | Optimized: [1, 0, 12, 4, 10, 8, 18, 1] [4] Cost: 1268.124 to 1267.495 | Optimized: [1, 5, 2, 1] ACO RESULTS [1/295 vol./1409.247 km] Berlin Hbf -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Würzburg Hbf --> Berlin Hbf [2/280 vol./1455.440 km] Berlin Hbf -> Kassel-Wilhelmshöhe -> Dortmund Hbf -> Hannover Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [3/260 vol./2043.565 km] Berlin Hbf -> München Hbf -> Stuttgart Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Köln Hbf --> Berlin Hbf [4/140 vol./1267.495 km] Berlin Hbf -> Aachen Hbf -> Düsseldorf Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 6175.747 km.