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 (45 vol.)
- Frankfurt Hbf (45 vol.)
- Hannover Hbf (80 vol.)
- Aachen Hbf (35 vol.)
- Stuttgart Hbf (25 vol.)
- Hamburg Hbf (75 vol.)
- München Hbf (25 vol.)
- Bremen Hbf (95 vol.)
- Leipzig Hbf (100 vol.)
- Karlsruhe Hbf (90 vol.)
- Ulm Hbf (55 vol.)
- Köln Hbf (25 vol.)
- Mannheim Hbf (100 vol.)
- Mainz Hbf (55 vol.)
- Würzburg Hbf (40 vol.)
- Saarbrücken Hbf (60 vol.)
- Osnabrück Hbf (55 vol.)
- Freiburg Hbf (30 vol.)
Tour 1
COST: 1589.414 km
LOAD: 295 vol.
- München Hbf | 25 vol.
- Ulm Hbf | 55 vol.
- Stuttgart Hbf | 25 vol.
- Karlsruhe Hbf | 90 vol.
- Mannheim Hbf | 100 vol.
Tour 2
COST: 1071.109 km
LOAD: 300 vol.
- Leipzig Hbf | 100 vol.
- Kassel-Wilhelmshöhe | 45 vol.
- Hannover Hbf | 80 vol.
- Hamburg Hbf | 75 vol.
Tour 3
COST: 2032.438 km
LOAD: 290 vol.
- Köln Hbf | 25 vol.
- Aachen Hbf | 35 vol.
- Saarbrücken Hbf | 60 vol.
- Freiburg Hbf | 30 vol.
- Mainz Hbf | 55 vol.
- Frankfurt Hbf | 45 vol.
- Würzburg Hbf | 40 vol.
Tour 4
COST: 925.844 km
LOAD: 150 vol.
- Osnabrück Hbf | 55 vol.
- Bremen Hbf | 95 vol.
LOAD: 295 vol.
- München Hbf | 25 vol.
- Ulm Hbf | 55 vol.
- Stuttgart Hbf | 25 vol.
- Karlsruhe Hbf | 90 vol.
- Mannheim Hbf | 100 vol.
LOAD: 300 vol.
- Leipzig Hbf | 100 vol.
- Kassel-Wilhelmshöhe | 45 vol.
- Hannover Hbf | 80 vol.
- Hamburg Hbf | 75 vol.
LOAD: 290 vol.
- Köln Hbf | 25 vol.
- Aachen Hbf | 35 vol.
- Saarbrücken Hbf | 60 vol.
- Freiburg Hbf | 30 vol.
- Mainz Hbf | 55 vol.
- Frankfurt Hbf | 45 vol.
- Würzburg Hbf | 40 vol.
LOAD: 150 vol.
- Osnabrück Hbf | 55 vol.
- Bremen Hbf | 95 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: 1035 vol. | Vehicle capacity: 300 vol. Loads: [45, 0, 0, 45, 80, 35, 25, 0, 75, 25, 95, 100, 0, 0, 90, 55, 25, 100, 0, 55, 40, 60, 55, 30] ITERATION Generation: #1 Best cost: 7298.700 | Path: [1, 0, 22, 10, 8, 16, 1, 11, 4, 20, 19, 6, 1, 3, 17, 14, 21, 1, 9, 15, 23, 5, 1] Best cost: 6433.507 | Path: [1, 3, 19, 17, 14, 1, 11, 4, 22, 0, 1, 8, 10, 16, 5, 21, 1, 20, 6, 15, 9, 23, 1] Best cost: 6335.105 | Path: [1, 5, 16, 22, 10, 4, 1, 11, 0, 3, 19, 20, 1, 8, 17, 14, 6, 1, 9, 15, 23, 21, 1] Best cost: 6026.242 | Path: [1, 14, 17, 19, 3, 1, 11, 0, 4, 8, 1, 10, 22, 16, 5, 21, 23, 1, 20, 6, 15, 9, 1] Best cost: 5702.132 | Path: [1, 9, 15, 6, 14, 17, 1, 11, 0, 4, 8, 1, 3, 19, 16, 5, 21, 23, 20, 1, 22, 10, 1] OPTIMIZING each tour... Current: [[1, 9, 15, 6, 14, 17, 1], [1, 11, 0, 4, 8, 1], [1, 3, 19, 16, 5, 21, 23, 20, 1], [1, 22, 10, 1]] [3] Cost: 2115.765 to 2032.438 | Optimized: [1, 16, 5, 21, 23, 19, 3, 20, 1] ACO RESULTS [1/295 vol./1589.414 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Mannheim Hbf --> Berlin Hbf [2/300 vol./1071.109 km] Berlin Hbf -> Leipzig Hbf -> Kassel-Wilhelmshöhe -> Hannover Hbf -> Hamburg Hbf --> Berlin Hbf [3/290 vol./2032.438 km] Berlin Hbf -> Köln Hbf -> Aachen Hbf -> Saarbrücken Hbf -> Freiburg Hbf -> Mainz Hbf -> Frankfurt Hbf -> Würzburg Hbf --> Berlin Hbf [4/150 vol./ 925.844 km] Berlin Hbf -> Osnabrück Hbf -> Bremen Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5618.805 km.