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: 20 customers
- Düsseldorf Hbf (25 vol.)
- Frankfurt Hbf (85 vol.)
- Hannover Hbf (80 vol.)
- Aachen Hbf (35 vol.)
- Dresden Hbf (80 vol.)
- Hamburg Hbf (45 vol.)
- München Hbf (70 vol.)
- Bremen Hbf (30 vol.)
- Leipzig Hbf (100 vol.)
- Dortmund Hbf (100 vol.)
- Karlsruhe Hbf (55 vol.)
- Ulm Hbf (85 vol.)
- Köln Hbf (30 vol.)
- Mannheim Hbf (95 vol.)
- Kiel Hbf (80 vol.)
- Mainz Hbf (80 vol.)
- Würzburg Hbf (95 vol.)
- Saarbrücken Hbf (30 vol.)
- Osnabrück Hbf (45 vol.)
- Freiburg Hbf (50 vol.)
Tour 1
COST: 1053.136 km
LOAD: 380 vol.
- Hannover Hbf | 80 vol.
- Hamburg Hbf | 45 vol.
- Kiel Hbf | 80 vol.
- Bremen Hbf | 30 vol.
- Osnabrück Hbf | 45 vol.
- Dortmund Hbf | 100 vol.
Tour 2
COST: 1056.84 km
LOAD: 380 vol.
- Frankfurt Hbf | 85 vol.
- Mainz Hbf | 80 vol.
- Mannheim Hbf | 95 vol.
- Saarbrücken Hbf | 30 vol.
- Aachen Hbf | 35 vol.
- Köln Hbf | 30 vol.
- Düsseldorf Hbf | 25 vol.
Tour 3
COST: 1385.876 km
LOAD: 355 vol.
- Würzburg Hbf | 95 vol.
- München Hbf | 70 vol.
- Ulm Hbf | 85 vol.
- Karlsruhe Hbf | 55 vol.
- Freiburg Hbf | 50 vol.
Tour 4
COST: 758.587 km
LOAD: 180 vol.
- Dresden Hbf | 80 vol.
- Leipzig Hbf | 100 vol.
LOAD: 380 vol.
- Hannover Hbf | 80 vol.
- Hamburg Hbf | 45 vol.
- Kiel Hbf | 80 vol.
- Bremen Hbf | 30 vol.
- Osnabrück Hbf | 45 vol.
- Dortmund Hbf | 100 vol.
LOAD: 380 vol.
- Frankfurt Hbf | 85 vol.
- Mainz Hbf | 80 vol.
- Mannheim Hbf | 95 vol.
- Saarbrücken Hbf | 30 vol.
- Aachen Hbf | 35 vol.
- Köln Hbf | 30 vol.
- Düsseldorf Hbf | 25 vol.
LOAD: 355 vol.
- Würzburg Hbf | 95 vol.
- München Hbf | 70 vol.
- Ulm Hbf | 85 vol.
- Karlsruhe Hbf | 55 vol.
- Freiburg Hbf | 50 vol.
LOAD: 180 vol.
- Dresden Hbf | 80 vol.
- Leipzig Hbf | 100 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: 1295 vol. | Vehicle capacity: 400 vol. Loads: [0, 0, 25, 85, 80, 35, 0, 80, 45, 70, 30, 100, 100, 0, 55, 85, 30, 95, 80, 80, 95, 30, 45, 50] ITERATION Generation: #1 Best cost: 5306.146 | Path: [0, 2, 16, 5, 12, 22, 10, 8, 18, 0, 19, 3, 17, 14, 15, 0, 4, 11, 7, 20, 21, 0, 9, 23, 0] Best cost: 4926.255 | Path: [0, 5, 16, 2, 12, 22, 10, 8, 18, 0, 3, 19, 17, 14, 23, 21, 0, 4, 11, 7, 15, 0, 20, 9, 0] Best cost: 4733.648 | Path: [0, 9, 15, 14, 17, 19, 0, 3, 20, 23, 21, 2, 16, 5, 22, 0, 12, 4, 10, 8, 18, 0, 11, 7, 0] Best cost: 4608.284 | Path: [0, 18, 8, 10, 4, 22, 12, 0, 3, 19, 17, 14, 23, 21, 0, 2, 16, 5, 20, 15, 9, 0, 11, 7, 0] Best cost: 4589.689 | Path: [0, 8, 18, 10, 4, 22, 12, 0, 3, 19, 17, 14, 23, 21, 0, 2, 16, 5, 20, 15, 9, 0, 11, 7, 0] Best cost: 4568.224 | Path: [0, 19, 3, 17, 14, 23, 21, 0, 22, 10, 8, 18, 4, 12, 0, 2, 16, 5, 20, 15, 9, 0, 11, 7, 0] Best cost: 4565.769 | Path: [0, 4, 8, 18, 10, 22, 12, 0, 20, 3, 19, 17, 21, 0, 2, 16, 5, 14, 23, 9, 15, 0, 11, 7, 0] Best cost: 4541.082 | Path: [0, 8, 18, 10, 4, 22, 12, 0, 2, 16, 5, 19, 3, 17, 21, 0, 20, 9, 15, 14, 23, 0, 11, 7, 0] Generation: #2 Best cost: 4483.109 | Path: [0, 4, 8, 18, 10, 22, 12, 0, 19, 3, 17, 14, 23, 21, 0, 2, 16, 5, 20, 15, 9, 0, 11, 7, 0] Best cost: 4475.005 | Path: [0, 21, 17, 14, 23, 15, 9, 0, 4, 10, 8, 18, 22, 12, 0, 2, 16, 5, 19, 3, 20, 0, 11, 7, 0] Best cost: 4419.165 | Path: [0, 21, 17, 14, 23, 15, 9, 0, 4, 8, 18, 10, 22, 12, 0, 20, 3, 19, 16, 2, 5, 0, 11, 7, 0] Generation: #8 Best cost: 4390.040 | Path: [0, 4, 10, 8, 18, 22, 12, 0, 2, 16, 5, 21, 17, 19, 3, 0, 20, 15, 9, 14, 23, 0, 11, 7, 0] OPTIMIZING each tour... Current: [[0, 4, 10, 8, 18, 22, 12, 0], [0, 2, 16, 5, 21, 17, 19, 3, 0], [0, 20, 15, 9, 14, 23, 0], [0, 11, 7, 0]] [1] Cost: 1132.002 to 1053.136 | Optimized: [0, 4, 8, 18, 10, 22, 12, 0] [2] Cost: 1059.134 to 1056.840 | Optimized: [0, 3, 19, 17, 21, 5, 16, 2, 0] [3] Cost: 1437.261 to 1385.876 | Optimized: [0, 20, 9, 15, 14, 23, 0] [4] Cost: 761.643 to 758.587 | Optimized: [0, 7, 11, 0] ACO RESULTS [1/380 vol./1053.136 km] Kassel-Wilhelmshöhe -> Hannover Hbf -> Hamburg Hbf -> Kiel Hbf -> Bremen Hbf -> Osnabrück Hbf -> Dortmund Hbf --> Kassel-Wilhelmshöhe [2/380 vol./1056.840 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Köln Hbf -> Düsseldorf Hbf --> Kassel-Wilhelmshöhe [3/355 vol./1385.876 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> München Hbf -> Ulm Hbf -> Karlsruhe Hbf -> Freiburg Hbf --> Kassel-Wilhelmshöhe [4/180 vol./ 758.587 km] Kassel-Wilhelmshöhe -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4254.439 km.