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: 21 customers
- Düsseldorf Hbf (55 vol.)
- Frankfurt Hbf (25 vol.)
- Hannover Hbf (40 vol.)
- Aachen Hbf (25 vol.)
- Stuttgart Hbf (85 vol.)
- Dresden Hbf (95 vol.)
- Hamburg Hbf (65 vol.)
- München Hbf (40 vol.)
- Bremen Hbf (60 vol.)
- Leipzig Hbf (50 vol.)
- Dortmund Hbf (55 vol.)
- Nürnberg Hbf (75 vol.)
- Ulm Hbf (20 vol.)
- Köln Hbf (20 vol.)
- Mannheim Hbf (70 vol.)
- Kiel Hbf (80 vol.)
- Mainz Hbf (60 vol.)
- Würzburg Hbf (30 vol.)
- Saarbrücken Hbf (50 vol.)
- Osnabrück Hbf (75 vol.)
- Freiburg Hbf (45 vol.)
Tour 1
COST: 1537.782 km
LOAD: 290 vol.
- Mainz Hbf | 60 vol.
- Aachen Hbf | 25 vol.
- Köln Hbf | 20 vol.
- Düsseldorf Hbf | 55 vol.
- Dortmund Hbf | 55 vol.
- Osnabrück Hbf | 75 vol.
Tour 2
COST: 1138.071 km
LOAD: 295 vol.
- Leipzig Hbf | 50 vol.
- Hannover Hbf | 40 vol.
- Bremen Hbf | 60 vol.
- Hamburg Hbf | 65 vol.
- Kiel Hbf | 80 vol.
Tour 3
COST: 1429.342 km
LOAD: 295 vol.
- Frankfurt Hbf | 25 vol.
- Mannheim Hbf | 70 vol.
- Würzburg Hbf | 30 vol.
- Nürnberg Hbf | 75 vol.
- Dresden Hbf | 95 vol.
Tour 4
COST: 1955.731 km
LOAD: 240 vol.
- München Hbf | 40 vol.
- Ulm Hbf | 20 vol.
- Stuttgart Hbf | 85 vol.
- Freiburg Hbf | 45 vol.
- Saarbrücken Hbf | 50 vol.
LOAD: 290 vol.
- Mainz Hbf | 60 vol.
- Aachen Hbf | 25 vol.
- Köln Hbf | 20 vol.
- Düsseldorf Hbf | 55 vol.
- Dortmund Hbf | 55 vol.
- Osnabrück Hbf | 75 vol.
LOAD: 295 vol.
- Leipzig Hbf | 50 vol.
- Hannover Hbf | 40 vol.
- Bremen Hbf | 60 vol.
- Hamburg Hbf | 65 vol.
- Kiel Hbf | 80 vol.
LOAD: 295 vol.
- Frankfurt Hbf | 25 vol.
- Mannheim Hbf | 70 vol.
- Würzburg Hbf | 30 vol.
- Nürnberg Hbf | 75 vol.
- Dresden Hbf | 95 vol.
LOAD: 240 vol.
- München Hbf | 40 vol.
- Ulm Hbf | 20 vol.
- Stuttgart Hbf | 85 vol.
- Freiburg Hbf | 45 vol.
- Saarbrücken Hbf | 50 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: 1120 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 55, 25, 40, 25, 85, 95, 65, 40, 60, 50, 55, 75, 0, 20, 20, 70, 80, 60, 30, 50, 75, 45] ITERATION Generation: #1 Best cost: 7979.729 | Path: [1, 2, 16, 5, 12, 22, 10, 1, 11, 7, 4, 8, 3, 15, 1, 18, 20, 13, 9, 17, 1, 21, 19, 6, 23, 1] Best cost: 7028.678 | Path: [1, 3, 19, 17, 20, 13, 9, 1, 11, 7, 4, 10, 12, 1, 8, 18, 22, 2, 16, 1, 5, 21, 6, 15, 23, 1] Best cost: 6853.247 | Path: [1, 5, 2, 16, 12, 22, 10, 1, 4, 8, 18, 20, 13, 1, 7, 11, 19, 3, 17, 1, 6, 15, 9, 23, 21, 1] Best cost: 6781.219 | Path: [1, 13, 20, 3, 19, 17, 5, 1, 4, 10, 8, 18, 12, 1, 7, 11, 9, 15, 6, 1, 22, 2, 16, 21, 23, 1] Best cost: 6768.341 | Path: [1, 19, 3, 17, 21, 23, 15, 20, 1, 11, 7, 13, 9, 16, 1, 8, 18, 10, 22, 1, 4, 12, 2, 5, 6, 1] Best cost: 6744.150 | Path: [1, 4, 10, 8, 18, 12, 1, 11, 7, 13, 20, 3, 16, 1, 22, 2, 5, 19, 17, 1, 9, 15, 6, 23, 21, 1] Best cost: 6701.786 | Path: [1, 18, 8, 10, 4, 12, 1, 11, 7, 13, 20, 3, 16, 1, 22, 2, 5, 19, 17, 1, 9, 15, 6, 21, 23, 1] Best cost: 6694.485 | Path: [1, 6, 15, 17, 19, 3, 20, 1, 7, 11, 4, 10, 12, 1, 8, 18, 22, 2, 16, 1, 13, 9, 23, 21, 5, 1] Best cost: 6658.646 | Path: [1, 7, 11, 4, 10, 12, 1, 8, 18, 22, 2, 16, 1, 13, 20, 3, 19, 17, 15, 1, 9, 6, 23, 21, 5, 1] Best cost: 6394.599 | Path: [1, 8, 18, 10, 4, 11, 1, 7, 13, 20, 3, 19, 1, 22, 12, 16, 2, 5, 21, 15, 1, 9, 6, 17, 23, 1] Best cost: 6351.865 | Path: [1, 9, 15, 6, 17, 19, 3, 1, 11, 7, 13, 20, 16, 5, 1, 8, 18, 10, 22, 1, 4, 12, 2, 21, 23, 1] Best cost: 6165.640 | Path: [1, 8, 18, 10, 4, 11, 1, 7, 3, 19, 20, 13, 1, 22, 12, 2, 16, 5, 17, 1, 21, 23, 6, 15, 9, 1] Generation: #4 Best cost: 6107.467 | Path: [1, 22, 12, 2, 16, 5, 19, 1, 8, 18, 10, 4, 11, 1, 7, 13, 20, 3, 17, 1, 9, 15, 6, 23, 21, 1] OPTIMIZING each tour... Current: [[1, 22, 12, 2, 16, 5, 19, 1], [1, 8, 18, 10, 4, 11, 1], [1, 7, 13, 20, 3, 17, 1], [1, 9, 15, 6, 23, 21, 1]] [1] Cost: 1543.573 to 1537.782 | Optimized: [1, 19, 5, 16, 2, 12, 22, 1] [2] Cost: 1157.030 to 1138.071 | Optimized: [1, 11, 4, 10, 8, 18, 1] [3] Cost: 1451.133 to 1429.342 | Optimized: [1, 3, 17, 20, 13, 7, 1] ACO RESULTS [1/290 vol./1537.782 km] Berlin Hbf -> Mainz Hbf -> Aachen Hbf -> Köln Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf --> Berlin Hbf [2/295 vol./1138.071 km] Berlin Hbf -> Leipzig Hbf -> Hannover Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [3/295 vol./1429.342 km] Berlin Hbf -> Frankfurt Hbf -> Mannheim Hbf -> Würzburg Hbf -> Nürnberg Hbf -> Dresden Hbf --> Berlin Hbf [4/240 vol./1955.731 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Freiburg Hbf -> Saarbrücken Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 6060.926 km.