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 (95 vol.)
- Düsseldorf Hbf (35 vol.)
- Frankfurt Hbf (40 vol.)
- Hannover Hbf (75 vol.)
- Aachen Hbf (80 vol.)
- Dresden Hbf (40 vol.)
- Hamburg Hbf (90 vol.)
- Bremen Hbf (20 vol.)
- Leipzig Hbf (55 vol.)
- Nürnberg Hbf (75 vol.)
- Mannheim Hbf (80 vol.)
- Kiel Hbf (80 vol.)
- Mainz Hbf (50 vol.)
- Saarbrücken Hbf (50 vol.)
- Osnabrück Hbf (40 vol.)
- Freiburg Hbf (20 vol.)
Tour 1
COST: 1154.148 km
LOAD: 300 vol.
- Leipzig Hbf | 55 vol.
- Kassel-Wilhelmshöhe | 95 vol.
- Osnabrück Hbf | 40 vol.
- Bremen Hbf | 20 vol.
- Hamburg Hbf | 90 vol.
Tour 2
COST: 1421.45 km
LOAD: 285 vol.
- Frankfurt Hbf | 40 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 80 vol.
- Nürnberg Hbf | 75 vol.
- Dresden Hbf | 40 vol.
Tour 3
COST: 1911.046 km
LOAD: 260 vol.
- Freiburg Hbf | 20 vol.
- Saarbrücken Hbf | 50 vol.
- Aachen Hbf | 80 vol.
- Düsseldorf Hbf | 35 vol.
- Hannover Hbf | 75 vol.
Tour 4
COST: 701.943 km
LOAD: 80 vol.
- Kiel Hbf | 80 vol.
LOAD: 300 vol.
- Leipzig Hbf | 55 vol.
- Kassel-Wilhelmshöhe | 95 vol.
- Osnabrück Hbf | 40 vol.
- Bremen Hbf | 20 vol.
- Hamburg Hbf | 90 vol.
LOAD: 285 vol.
- Frankfurt Hbf | 40 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 80 vol.
- Nürnberg Hbf | 75 vol.
- Dresden Hbf | 40 vol.
LOAD: 260 vol.
- Freiburg Hbf | 20 vol.
- Saarbrücken Hbf | 50 vol.
- Aachen Hbf | 80 vol.
- Düsseldorf Hbf | 35 vol.
- Hannover Hbf | 75 vol.
LOAD: 80 vol.
- Kiel Hbf | 80 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: [95, 0, 35, 40, 75, 80, 0, 40, 90, 0, 20, 55, 0, 75, 0, 0, 0, 80, 80, 50, 0, 50, 40, 20] ITERATION Generation: #1 Best cost: 6086.464 | Path: [1, 0, 3, 19, 17, 23, 1, 7, 11, 4, 10, 22, 2, 1, 8, 18, 5, 21, 1, 13, 1] Best cost: 5971.612 | Path: [1, 4, 10, 22, 0, 11, 1, 7, 13, 3, 19, 17, 1, 8, 18, 2, 5, 1, 21, 23, 1] Best cost: 5787.624 | Path: [1, 19, 3, 17, 21, 23, 2, 10, 1, 7, 11, 0, 22, 1, 4, 8, 18, 1, 13, 5, 1] Best cost: 5499.775 | Path: [1, 0, 22, 10, 8, 11, 1, 7, 13, 3, 19, 17, 1, 4, 2, 5, 21, 23, 1, 18, 1] Generation: #2 Best cost: 5442.238 | Path: [1, 2, 5, 19, 3, 17, 1, 11, 7, 13, 23, 21, 22, 10, 1, 4, 8, 18, 1, 0, 1] Best cost: 5427.998 | Path: [1, 0, 22, 10, 8, 11, 1, 7, 13, 17, 19, 3, 1, 4, 2, 5, 21, 23, 1, 18, 1] Generation: #3 Best cost: 5279.484 | Path: [1, 10, 22, 2, 5, 21, 23, 7, 1, 11, 13, 19, 3, 17, 1, 4, 8, 18, 1, 0, 1] Generation: #10 Best cost: 5265.014 | Path: [1, 11, 0, 22, 10, 8, 1, 7, 13, 3, 19, 17, 1, 4, 2, 5, 21, 23, 1, 18, 1] OPTIMIZING each tour... Current: [[1, 11, 0, 22, 10, 8, 1], [1, 7, 13, 3, 19, 17, 1], [1, 4, 2, 5, 21, 23, 1], [1, 18, 1]] [2] Cost: 1495.180 to 1421.450 | Optimized: [1, 3, 19, 17, 13, 7, 1] [3] Cost: 1913.743 to 1911.046 | Optimized: [1, 23, 21, 5, 2, 4, 1] ACO RESULTS [1/300 vol./1154.148 km] Berlin Hbf -> Leipzig Hbf -> Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf --> Berlin Hbf [2/285 vol./1421.450 km] Berlin Hbf -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Nürnberg Hbf -> Dresden Hbf --> Berlin Hbf [3/260 vol./1911.046 km] Berlin Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Aachen Hbf -> Düsseldorf Hbf -> Hannover Hbf --> Berlin Hbf [4/ 80 vol./ 701.943 km] Berlin Hbf -> Kiel Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5188.587 km.