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
- Kassel-Wilhelmshöhe (35 vol.)
- Düsseldorf Hbf (95 vol.)
- Frankfurt Hbf (55 vol.)
- Hannover Hbf (45 vol.)
- Aachen Hbf (40 vol.)
- Stuttgart Hbf (40 vol.)
- Hamburg Hbf (60 vol.)
- München Hbf (70 vol.)
- Bremen Hbf (40 vol.)
- Leipzig Hbf (95 vol.)
- Dortmund Hbf (90 vol.)
- Nürnberg Hbf (40 vol.)
- Karlsruhe Hbf (90 vol.)
- Ulm Hbf (70 vol.)
- Köln Hbf (25 vol.)
- Mannheim Hbf (65 vol.)
- Kiel Hbf (100 vol.)
- Würzburg Hbf (65 vol.)
- Saarbrücken Hbf (80 vol.)
- Freiburg Hbf (25 vol.)
Tour 1
COST: 1047.948 km
LOAD: 300 vol.
- Leipzig Hbf | 95 vol.
- Hannover Hbf | 45 vol.
- Hamburg Hbf | 60 vol.
- Kiel Hbf | 100 vol.
Tour 2
COST: 1629.081 km
LOAD: 300 vol.
- Frankfurt Hbf | 55 vol.
- Mannheim Hbf | 65 vol.
- Karlsruhe Hbf | 90 vol.
- Freiburg Hbf | 25 vol.
- Würzburg Hbf | 65 vol.
Tour 3
COST: 1785.672 km
LOAD: 300 vol.
- Nürnberg Hbf | 40 vol.
- München Hbf | 70 vol.
- Ulm Hbf | 70 vol.
- Stuttgart Hbf | 40 vol.
- Saarbrücken Hbf | 80 vol.
Tour 4
COST: 1350.515 km
LOAD: 285 vol.
- Dortmund Hbf | 90 vol.
- Düsseldorf Hbf | 95 vol.
- Aachen Hbf | 40 vol.
- Köln Hbf | 25 vol.
- Kassel-Wilhelmshöhe | 35 vol.
Tour 5
COST: 781.807 km
LOAD: 40 vol.
- Bremen Hbf | 40 vol.
LOAD: 300 vol.
- Leipzig Hbf | 95 vol.
- Hannover Hbf | 45 vol.
- Hamburg Hbf | 60 vol.
- Kiel Hbf | 100 vol.
LOAD: 300 vol.
- Frankfurt Hbf | 55 vol.
- Mannheim Hbf | 65 vol.
- Karlsruhe Hbf | 90 vol.
- Freiburg Hbf | 25 vol.
- Würzburg Hbf | 65 vol.
LOAD: 300 vol.
- Nürnberg Hbf | 40 vol.
- München Hbf | 70 vol.
- Ulm Hbf | 70 vol.
- Stuttgart Hbf | 40 vol.
- Saarbrücken Hbf | 80 vol.
LOAD: 285 vol.
- Dortmund Hbf | 90 vol.
- Düsseldorf Hbf | 95 vol.
- Aachen Hbf | 40 vol.
- Köln Hbf | 25 vol.
- Kassel-Wilhelmshöhe | 35 vol.
LOAD: 40 vol.
- Bremen Hbf | 40 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: 1225 vol. | Vehicle capacity: 300 vol. Loads: [35, 0, 95, 55, 45, 40, 40, 0, 60, 70, 40, 95, 90, 40, 90, 70, 25, 65, 100, 0, 65, 80, 0, 25] ITERATION Generation: #1 Best cost: 7862.313 | Path: [1, 0, 12, 2, 16, 5, 1, 8, 18, 10, 4, 3, 1, 11, 13, 20, 15, 23, 1, 9, 6, 14, 17, 1, 21, 1] Best cost: 7798.616 | Path: [1, 2, 16, 5, 12, 0, 1, 4, 10, 8, 18, 3, 1, 11, 13, 20, 6, 23, 1, 17, 14, 21, 1, 15, 9, 1] Best cost: 7560.978 | Path: [1, 9, 15, 6, 14, 23, 1, 11, 0, 12, 16, 5, 1, 8, 18, 10, 4, 3, 1, 13, 20, 17, 21, 1, 2, 1] Best cost: 7458.200 | Path: [1, 16, 2, 12, 5, 0, 1, 11, 4, 8, 18, 1, 10, 21, 14, 17, 23, 1, 20, 13, 9, 15, 6, 1, 3, 1] Best cost: 7433.393 | Path: [1, 20, 13, 9, 15, 6, 1, 11, 10, 8, 18, 1, 4, 0, 12, 2, 16, 1, 3, 17, 14, 23, 5, 1, 21, 1] Best cost: 7427.327 | Path: [1, 13, 20, 3, 17, 6, 23, 1, 11, 0, 12, 16, 5, 1, 8, 18, 10, 4, 1, 9, 15, 14, 1, 2, 21, 1] Best cost: 7404.705 | Path: [1, 18, 8, 10, 4, 0, 1, 11, 13, 20, 3, 16, 1, 12, 2, 5, 17, 1, 6, 14, 23, 21, 1, 9, 15, 1] Best cost: 7259.004 | Path: [1, 20, 3, 17, 14, 23, 1, 11, 4, 8, 18, 1, 0, 12, 2, 16, 5, 1, 10, 21, 15, 6, 13, 1, 9, 1] Best cost: 7195.396 | Path: [1, 9, 15, 6, 14, 23, 1, 11, 4, 8, 18, 1, 10, 12, 2, 16, 5, 1, 13, 20, 3, 17, 0, 1, 21, 1] Generation: #2 Best cost: 6673.130 | Path: [1, 0, 12, 2, 16, 5, 1, 11, 4, 8, 18, 1, 20, 3, 17, 14, 23, 1, 13, 9, 15, 6, 21, 1, 10, 1] Generation: #7 Best cost: 6671.620 | Path: [1, 11, 4, 8, 18, 1, 20, 3, 17, 14, 23, 1, 13, 9, 15, 6, 21, 1, 12, 2, 16, 5, 0, 1, 10, 1] OPTIMIZING each tour... Current: [[1, 11, 4, 8, 18, 1], [1, 20, 3, 17, 14, 23, 1], [1, 13, 9, 15, 6, 21, 1], [1, 12, 2, 16, 5, 0, 1], [1, 10, 1]] [2] Cost: 1685.659 to 1629.081 | Optimized: [1, 3, 17, 14, 23, 20, 1] [4] Cost: 1370.534 to 1350.515 | Optimized: [1, 12, 2, 5, 16, 0, 1] ACO RESULTS [1/300 vol./1047.948 km] Berlin Hbf -> Leipzig Hbf -> Hannover Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [2/300 vol./1629.081 km] Berlin Hbf -> Frankfurt Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Würzburg Hbf --> Berlin Hbf [3/300 vol./1785.672 km] Berlin Hbf -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Saarbrücken Hbf --> Berlin Hbf [4/285 vol./1350.515 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Aachen Hbf -> Köln Hbf -> Kassel-Wilhelmshöhe --> Berlin Hbf [5/ 40 vol./ 781.807 km] Berlin Hbf -> Bremen Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 6595.023 km.