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: 20 customers
- Düsseldorf Hbf (85 vol.)
- Frankfurt Hbf (60 vol.)
- Hannover Hbf (95 vol.)
- Aachen Hbf (95 vol.)
- Stuttgart Hbf (100 vol.)
- Dresden Hbf (75 vol.)
- Hamburg Hbf (35 vol.)
- München Hbf (50 vol.)
- Leipzig Hbf (65 vol.)
- Dortmund Hbf (100 vol.)
- Nürnberg Hbf (90 vol.)
- Karlsruhe Hbf (40 vol.)
- Ulm Hbf (90 vol.)
- Köln Hbf (60 vol.)
- Kiel Hbf (80 vol.)
- Mainz Hbf (90 vol.)
- Würzburg Hbf (60 vol.)
- Saarbrücken Hbf (85 vol.)
- Osnabrück Hbf (60 vol.)
- Freiburg Hbf (55 vol.)
Tour 1
COST: 1275.483 km
LOAD: 300 vol.
- Mainz Hbf | 90 vol.
- Frankfurt Hbf | 60 vol.
- Würzburg Hbf | 60 vol.
- Nürnberg Hbf | 90 vol.
Tour 2
COST: 1133.433 km
LOAD: 295 vol.
- Osnabrück Hbf | 60 vol.
- Hannover Hbf | 95 vol.
- Leipzig Hbf | 65 vol.
- Dresden Hbf | 75 vol.
Tour 3
COST: 1408.587 km
LOAD: 300 vol.
- Dortmund Hbf | 100 vol.
- Düsseldorf Hbf | 85 vol.
- Hamburg Hbf | 35 vol.
- Kiel Hbf | 80 vol.
Tour 4
COST: 1571.395 km
LOAD: 280 vol.
- München Hbf | 50 vol.
- Ulm Hbf | 90 vol.
- Stuttgart Hbf | 100 vol.
- Karlsruhe Hbf | 40 vol.
Tour 5
COST: 1921.042 km
LOAD: 295 vol.
- Freiburg Hbf | 55 vol.
- Saarbrücken Hbf | 85 vol.
- Aachen Hbf | 95 vol.
- Köln Hbf | 60 vol.
LOAD: 300 vol.
- Mainz Hbf | 90 vol.
- Frankfurt Hbf | 60 vol.
- Würzburg Hbf | 60 vol.
- Nürnberg Hbf | 90 vol.
LOAD: 295 vol.
- Osnabrück Hbf | 60 vol.
- Hannover Hbf | 95 vol.
- Leipzig Hbf | 65 vol.
- Dresden Hbf | 75 vol.
LOAD: 300 vol.
- Dortmund Hbf | 100 vol.
- Düsseldorf Hbf | 85 vol.
- Hamburg Hbf | 35 vol.
- Kiel Hbf | 80 vol.
LOAD: 280 vol.
- München Hbf | 50 vol.
- Ulm Hbf | 90 vol.
- Stuttgart Hbf | 100 vol.
- Karlsruhe Hbf | 40 vol.
LOAD: 295 vol.
- Freiburg Hbf | 55 vol.
- Saarbrücken Hbf | 85 vol.
- Aachen Hbf | 95 vol.
- Köln Hbf | 60 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: 1470 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 85, 60, 95, 95, 100, 75, 35, 50, 0, 65, 100, 90, 40, 90, 60, 0, 80, 90, 60, 85, 60, 55] ITERATION Generation: #1 Best cost: 8896.313 | Path: [1, 2, 16, 5, 22, 1, 7, 11, 4, 8, 1, 18, 12, 19, 1, 13, 20, 3, 14, 9, 1, 15, 6, 21, 1, 23, 1] Best cost: 7786.609 | Path: [1, 5, 16, 2, 22, 1, 11, 7, 13, 20, 1, 4, 8, 18, 19, 1, 12, 3, 14, 6, 1, 9, 15, 23, 21, 1] Best cost: 7673.320 | Path: [1, 13, 20, 3, 19, 1, 11, 7, 4, 22, 1, 8, 18, 12, 2, 1, 15, 6, 14, 23, 1, 5, 16, 21, 9, 1] Best cost: 7665.082 | Path: [1, 13, 20, 3, 19, 1, 7, 11, 4, 22, 1, 8, 18, 12, 2, 1, 16, 5, 21, 14, 1, 6, 15, 9, 23, 1] Best cost: 7566.312 | Path: [1, 15, 6, 14, 23, 1, 7, 11, 4, 22, 1, 8, 18, 12, 2, 1, 19, 3, 20, 13, 1, 5, 16, 21, 9, 1] Best cost: 7512.788 | Path: [1, 7, 11, 4, 22, 1, 8, 18, 12, 2, 1, 20, 3, 19, 14, 9, 1, 13, 6, 15, 1, 16, 5, 21, 23, 1] Best cost: 7447.349 | Path: [1, 9, 15, 6, 14, 1, 11, 7, 4, 22, 1, 8, 18, 12, 2, 1, 13, 20, 3, 19, 1, 16, 5, 21, 23, 1] Best cost: 7348.153 | Path: [1, 7, 11, 4, 22, 1, 8, 18, 12, 2, 1, 13, 20, 3, 19, 1, 9, 15, 6, 14, 1, 16, 5, 21, 23, 1] Best cost: 7344.623 | Path: [1, 9, 15, 6, 14, 1, 7, 11, 4, 22, 1, 18, 8, 12, 2, 1, 13, 20, 3, 19, 1, 16, 5, 21, 23, 1] Generation: #3 Best cost: 7340.341 | Path: [1, 19, 3, 20, 13, 1, 7, 11, 4, 22, 1, 8, 18, 12, 2, 1, 9, 15, 6, 14, 1, 16, 5, 21, 23, 1] OPTIMIZING each tour... Current: [[1, 19, 3, 20, 13, 1], [1, 7, 11, 4, 22, 1], [1, 8, 18, 12, 2, 1], [1, 9, 15, 6, 14, 1], [1, 16, 5, 21, 23, 1]] [2] Cost: 1134.711 to 1133.433 | Optimized: [1, 22, 4, 11, 7, 1] [3] Cost: 1436.644 to 1408.587 | Optimized: [1, 12, 2, 8, 18, 1] [5] Cost: 1922.108 to 1921.042 | Optimized: [1, 23, 21, 5, 16, 1] ACO RESULTS [1/300 vol./1275.483 km] Berlin Hbf -> Mainz Hbf -> Frankfurt Hbf -> Würzburg Hbf -> Nürnberg Hbf --> Berlin Hbf [2/295 vol./1133.433 km] Berlin Hbf -> Osnabrück Hbf -> Hannover Hbf -> Leipzig Hbf -> Dresden Hbf --> Berlin Hbf [3/300 vol./1408.587 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [4/280 vol./1571.395 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf --> Berlin Hbf [5/295 vol./1921.042 km] Berlin Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Köln Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 7309.940 km.