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: 16 customers
- Kassel-Wilhelmshöhe (50 vol.)
- Düsseldorf Hbf (25 vol.)
- Hannover Hbf (50 vol.)
- Aachen Hbf (90 vol.)
- Stuttgart Hbf (45 vol.)
- Hamburg Hbf (50 vol.)
- Bremen Hbf (40 vol.)
- Nürnberg Hbf (80 vol.)
- Karlsruhe Hbf (20 vol.)
- Ulm Hbf (90 vol.)
- Köln Hbf (55 vol.)
- Mannheim Hbf (45 vol.)
- Kiel Hbf (40 vol.)
- Mainz Hbf (95 vol.)
- Saarbrücken Hbf (65 vol.)
- Osnabrück Hbf (85 vol.)
Tour 1
COST: 1492.191 km
LOAD: 280 vol.
- Mannheim Hbf | 45 vol.
- Karlsruhe Hbf | 20 vol.
- Stuttgart Hbf | 45 vol.
- Ulm Hbf | 90 vol.
- Nürnberg Hbf | 80 vol.
Tour 2
COST: 1479.265 km
LOAD: 295 vol.
- Köln Hbf | 55 vol.
- Düsseldorf Hbf | 25 vol.
- Osnabrück Hbf | 85 vol.
- Bremen Hbf | 40 vol.
- Hamburg Hbf | 50 vol.
- Kiel Hbf | 40 vol.
Tour 3
COST: 1655.45 km
LOAD: 300 vol.
- Kassel-Wilhelmshöhe | 50 vol.
- Mainz Hbf | 95 vol.
- Saarbrücken Hbf | 65 vol.
- Aachen Hbf | 90 vol.
Tour 4
COST: 565.96 km
LOAD: 50 vol.
- Hannover Hbf | 50 vol.
LOAD: 280 vol.
- Mannheim Hbf | 45 vol.
- Karlsruhe Hbf | 20 vol.
- Stuttgart Hbf | 45 vol.
- Ulm Hbf | 90 vol.
- Nürnberg Hbf | 80 vol.
LOAD: 295 vol.
- Köln Hbf | 55 vol.
- Düsseldorf Hbf | 25 vol.
- Osnabrück Hbf | 85 vol.
- Bremen Hbf | 40 vol.
- Hamburg Hbf | 50 vol.
- Kiel Hbf | 40 vol.
LOAD: 300 vol.
- Kassel-Wilhelmshöhe | 50 vol.
- Mainz Hbf | 95 vol.
- Saarbrücken Hbf | 65 vol.
- Aachen Hbf | 90 vol.
LOAD: 50 vol.
- Hannover 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: 925 vol. | Vehicle capacity: 300 vol. Loads: [50, 0, 25, 0, 50, 90, 45, 0, 50, 0, 40, 0, 0, 80, 20, 90, 55, 45, 40, 95, 0, 65, 85, 0] ITERATION Generation: #1 Best cost: 6496.905 | Path: [1, 0, 4, 10, 22, 2, 17, 1, 18, 8, 16, 5, 21, 1, 13, 6, 14, 15, 1, 19, 1] Best cost: 6453.700 | Path: [1, 2, 16, 5, 4, 10, 18, 1, 8, 22, 0, 19, 14, 1, 13, 6, 15, 17, 1, 21, 1] Best cost: 6426.777 | Path: [1, 4, 10, 22, 2, 16, 17, 1, 8, 18, 0, 19, 14, 6, 1, 13, 15, 21, 1, 5, 1] Best cost: 6310.318 | Path: [1, 6, 14, 17, 19, 21, 2, 1, 4, 10, 8, 18, 22, 1, 13, 15, 0, 16, 1, 5, 1] Best cost: 6190.386 | Path: [1, 8, 18, 10, 22, 4, 2, 1, 0, 19, 17, 14, 6, 1, 13, 15, 21, 16, 1, 5, 1] Best cost: 6075.567 | Path: [1, 13, 17, 14, 6, 15, 1, 8, 18, 10, 4, 22, 2, 1, 0, 19, 16, 5, 1, 21, 1] Best cost: 5748.417 | Path: [1, 15, 6, 14, 17, 19, 1, 18, 8, 10, 22, 4, 2, 1, 13, 21, 16, 5, 1, 0, 1] Best cost: 5367.139 | Path: [1, 16, 2, 5, 21, 17, 14, 1, 18, 8, 10, 22, 4, 1, 0, 19, 6, 15, 1, 13, 1] Best cost: 5335.333 | Path: [1, 2, 16, 5, 21, 17, 14, 1, 4, 22, 10, 8, 18, 1, 0, 19, 6, 15, 1, 13, 1] Generation: #4 Best cost: 5326.545 | Path: [1, 16, 2, 5, 21, 14, 17, 1, 18, 8, 10, 22, 4, 1, 0, 19, 6, 15, 1, 13, 1] Generation: #5 Best cost: 5222.736 | Path: [1, 17, 14, 6, 15, 13, 1, 8, 18, 10, 22, 2, 16, 1, 0, 19, 21, 5, 1, 4, 1] OPTIMIZING each tour... Current: [[1, 17, 14, 6, 15, 13, 1], [1, 8, 18, 10, 22, 2, 16, 1], [1, 0, 19, 21, 5, 1], [1, 4, 1]] [2] Cost: 1509.135 to 1479.265 | Optimized: [1, 16, 2, 22, 10, 8, 18, 1] ACO RESULTS [1/280 vol./1492.191 km] Berlin Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Stuttgart Hbf -> Ulm Hbf -> Nürnberg Hbf --> Berlin Hbf [2/295 vol./1479.265 km] Berlin Hbf -> Köln Hbf -> Düsseldorf Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [3/300 vol./1655.450 km] Berlin Hbf -> Kassel-Wilhelmshöhe -> Mainz Hbf -> Saarbrücken Hbf -> Aachen Hbf --> Berlin Hbf [4/ 50 vol./ 565.960 km] Berlin Hbf -> Hannover Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5192.866 km.