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: 14 customers
- Düsseldorf Hbf (30 vol.)
- Frankfurt Hbf (80 vol.)
- Hannover Hbf (60 vol.)
- Stuttgart Hbf (80 vol.)
- Dresden Hbf (40 vol.)
- Leipzig Hbf (50 vol.)
- Dortmund Hbf (85 vol.)
- Nürnberg Hbf (75 vol.)
- Ulm Hbf (100 vol.)
- Köln Hbf (55 vol.)
- Mannheim Hbf (50 vol.)
- Würzburg Hbf (85 vol.)
- Osnabrück Hbf (40 vol.)
- Freiburg Hbf (35 vol.)
Tour 1
COST: 1431.589 km
LOAD: 295 vol.
- Ulm Hbf | 100 vol.
- Stuttgart Hbf | 80 vol.
- Nürnberg Hbf | 75 vol.
- Dresden Hbf | 40 vol.
Tour 2
COST: 1223.889 km
LOAD: 270 vol.
- Dortmund Hbf | 85 vol.
- Düsseldorf Hbf | 30 vol.
- Köln Hbf | 55 vol.
- Osnabrück Hbf | 40 vol.
- Hannover Hbf | 60 vol.
Tour 3
COST: 1660.941 km
LOAD: 300 vol.
- Leipzig Hbf | 50 vol.
- Frankfurt Hbf | 80 vol.
- Mannheim Hbf | 50 vol.
- Freiburg Hbf | 35 vol.
- Würzburg Hbf | 85 vol.
LOAD: 295 vol.
- Ulm Hbf | 100 vol.
- Stuttgart Hbf | 80 vol.
- Nürnberg Hbf | 75 vol.
- Dresden Hbf | 40 vol.
LOAD: 270 vol.
- Dortmund Hbf | 85 vol.
- Düsseldorf Hbf | 30 vol.
- Köln Hbf | 55 vol.
- Osnabrück Hbf | 40 vol.
- Hannover Hbf | 60 vol.
LOAD: 300 vol.
- Leipzig Hbf | 50 vol.
- Frankfurt Hbf | 80 vol.
- Mannheim Hbf | 50 vol.
- Freiburg Hbf | 35 vol.
- Würzburg 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: [1] Berlin Hbf | Number of cities: 24 | Total loads: 865 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 30, 80, 60, 0, 80, 40, 0, 0, 0, 50, 85, 75, 0, 100, 55, 50, 0, 0, 85, 0, 40, 35] ITERATION Generation: #1 Best cost: 4681.862 | Path: [1, 2, 16, 12, 22, 4, 1, 7, 11, 13, 20, 17, 1, 3, 6, 15, 23, 1] Best cost: 4506.582 | Path: [1, 3, 17, 6, 20, 1, 7, 11, 13, 15, 23, 1, 4, 22, 12, 2, 16, 1] Best cost: 4392.476 | Path: [1, 23, 17, 3, 20, 11, 1, 7, 13, 15, 6, 1, 4, 22, 12, 2, 16, 1] Generation: #4 Best cost: 4382.923 | Path: [1, 6, 15, 13, 7, 1, 4, 22, 12, 2, 16, 1, 11, 20, 3, 17, 23, 1] OPTIMIZING each tour... Current: [[1, 6, 15, 13, 7, 1], [1, 4, 22, 12, 2, 16, 1], [1, 11, 20, 3, 17, 23, 1]] [1] Cost: 1433.141 to 1431.589 | Optimized: [1, 15, 6, 13, 7, 1] [2] Cost: 1232.263 to 1223.889 | Optimized: [1, 12, 2, 16, 22, 4, 1] [3] Cost: 1717.519 to 1660.941 | Optimized: [1, 11, 3, 17, 23, 20, 1] ACO RESULTS [1/295 vol./1431.589 km] Berlin Hbf -> Ulm Hbf -> Stuttgart Hbf -> Nürnberg Hbf -> Dresden Hbf --> Berlin Hbf [2/270 vol./1223.889 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Osnabrück Hbf -> Hannover Hbf --> Berlin Hbf [3/300 vol./1660.941 km] Berlin Hbf -> Leipzig Hbf -> Frankfurt Hbf -> Mannheim Hbf -> Freiburg Hbf -> Würzburg Hbf --> Berlin Hbf OPTIMIZATION RESULT: 3 tours | 4316.419 km.