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: 15 customers
- Kassel-Wilhelmshöhe (75 vol.)
- Düsseldorf Hbf (50 vol.)
- Aachen Hbf (65 vol.)
- Stuttgart Hbf (55 vol.)
- Hamburg Hbf (30 vol.)
- München Hbf (100 vol.)
- Bremen Hbf (90 vol.)
- Dortmund Hbf (25 vol.)
- Nürnberg Hbf (50 vol.)
- Karlsruhe Hbf (80 vol.)
- Ulm Hbf (45 vol.)
- Köln Hbf (70 vol.)
- Mannheim Hbf (70 vol.)
- Saarbrücken Hbf (40 vol.)
- Osnabrück Hbf (80 vol.)
Tour 1
COST: 1571.395 km
LOAD: 280 vol.
- München Hbf | 100 vol.
- Ulm Hbf | 45 vol.
- Stuttgart Hbf | 55 vol.
- Karlsruhe Hbf | 80 vol.
Tour 2
COST: 1272.031 km
LOAD: 275 vol.
- Düsseldorf Hbf | 50 vol.
- Dortmund Hbf | 25 vol.
- Osnabrück Hbf | 80 vol.
- Bremen Hbf | 90 vol.
- Hamburg Hbf | 30 vol.
Tour 3
COST: 1715.668 km
LOAD: 295 vol.
- Nürnberg Hbf | 50 vol.
- Mannheim Hbf | 70 vol.
- Saarbrücken Hbf | 40 vol.
- Aachen Hbf | 65 vol.
- Köln Hbf | 70 vol.
Tour 4
COST: 785.078 km
LOAD: 75 vol.
- Kassel-Wilhelmshöhe | 75 vol.
LOAD: 280 vol.
- München Hbf | 100 vol.
- Ulm Hbf | 45 vol.
- Stuttgart Hbf | 55 vol.
- Karlsruhe Hbf | 80 vol.
LOAD: 275 vol.
- Düsseldorf Hbf | 50 vol.
- Dortmund Hbf | 25 vol.
- Osnabrück Hbf | 80 vol.
- Bremen Hbf | 90 vol.
- Hamburg Hbf | 30 vol.
LOAD: 295 vol.
- Nürnberg Hbf | 50 vol.
- Mannheim Hbf | 70 vol.
- Saarbrücken Hbf | 40 vol.
- Aachen Hbf | 65 vol.
- Köln Hbf | 70 vol.
LOAD: 75 vol.
- Kassel-Wilhelmshöhe | 75 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: 925 vol. | Vehicle capacity: 300 vol. Loads: [75, 0, 50, 0, 0, 65, 55, 0, 30, 100, 90, 0, 25, 50, 80, 45, 70, 70, 0, 0, 0, 40, 80, 0] ITERATION Generation: #1 Best cost: 6018.375 | Path: [1, 0, 12, 2, 16, 5, 1, 8, 10, 22, 21, 6, 1, 13, 9, 15, 14, 1, 17, 1] Best cost: 6002.603 | Path: [1, 6, 14, 17, 21, 12, 8, 1, 13, 9, 15, 0, 1, 10, 22, 2, 16, 1, 5, 1] Best cost: 5459.782 | Path: [1, 8, 10, 22, 12, 16, 1, 9, 15, 6, 14, 1, 0, 17, 21, 5, 2, 1, 13, 1] Best cost: 5412.665 | Path: [1, 9, 15, 6, 14, 1, 8, 10, 22, 12, 2, 1, 13, 17, 21, 16, 5, 1, 0, 1] Best cost: 5353.001 | Path: [1, 9, 15, 6, 14, 1, 8, 10, 22, 12, 2, 1, 13, 17, 21, 5, 16, 1, 0, 1] OPTIMIZING each tour... Current: [[1, 9, 15, 6, 14, 1], [1, 8, 10, 22, 12, 2, 1], [1, 13, 17, 21, 5, 16, 1], [1, 0, 1]] [2] Cost: 1280.860 to 1272.031 | Optimized: [1, 2, 12, 22, 10, 8, 1] ACO RESULTS [1/280 vol./1571.395 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf --> Berlin Hbf [2/275 vol./1272.031 km] Berlin Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf --> Berlin Hbf [3/295 vol./1715.668 km] Berlin Hbf -> Nürnberg Hbf -> Mannheim Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Köln Hbf --> Berlin Hbf [4/ 75 vol./ 785.078 km] Berlin Hbf -> Kassel-Wilhelmshöhe --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5344.172 km.