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 (70 vol.)
- Düsseldorf Hbf (90 vol.)
- Hannover Hbf (95 vol.)
- Aachen Hbf (35 vol.)
- Stuttgart Hbf (60 vol.)
- Dresden Hbf (70 vol.)
- Hamburg Hbf (75 vol.)
- München Hbf (20 vol.)
- Bremen Hbf (50 vol.)
- Leipzig Hbf (25 vol.)
- Dortmund Hbf (25 vol.)
- Nürnberg Hbf (30 vol.)
- Karlsruhe Hbf (100 vol.)
- Ulm Hbf (30 vol.)
- Köln Hbf (20 vol.)
- Kiel Hbf (30 vol.)
- Mainz Hbf (25 vol.)
- Saarbrücken Hbf (30 vol.)
- Osnabrück Hbf (70 vol.)
- Freiburg Hbf (30 vol.)
Tour 1
COST: 1982.986 km
LOAD: 300 vol.
- Nürnberg Hbf | 30 vol.
- München Hbf | 20 vol.
- Ulm Hbf | 30 vol.
- Stuttgart Hbf | 60 vol.
- Karlsruhe Hbf | 100 vol.
- Freiburg Hbf | 30 vol.
- Saarbrücken Hbf | 30 vol.
Tour 2
COST: 1649.053 km
LOAD: 290 vol.
- Dortmund Hbf | 25 vol.
- Düsseldorf Hbf | 90 vol.
- Köln Hbf | 20 vol.
- Aachen Hbf | 35 vol.
- Mainz Hbf | 25 vol.
- Leipzig Hbf | 25 vol.
- Dresden Hbf | 70 vol.
Tour 3
COST: 1091.079 km
LOAD: 285 vol.
- Kassel-Wilhelmshöhe | 70 vol.
- Osnabrück Hbf | 70 vol.
- Bremen Hbf | 50 vol.
- Hannover Hbf | 95 vol.
Tour 4
COST: 732.557 km
LOAD: 105 vol.
- Hamburg Hbf | 75 vol.
- Kiel Hbf | 30 vol.
LOAD: 300 vol.
- Nürnberg Hbf | 30 vol.
- München Hbf | 20 vol.
- Ulm Hbf | 30 vol.
- Stuttgart Hbf | 60 vol.
- Karlsruhe Hbf | 100 vol.
- Freiburg Hbf | 30 vol.
- Saarbrücken Hbf | 30 vol.
LOAD: 290 vol.
- Dortmund Hbf | 25 vol.
- Düsseldorf Hbf | 90 vol.
- Köln Hbf | 20 vol.
- Aachen Hbf | 35 vol.
- Mainz Hbf | 25 vol.
- Leipzig Hbf | 25 vol.
- Dresden Hbf | 70 vol.
LOAD: 285 vol.
- Kassel-Wilhelmshöhe | 70 vol.
- Osnabrück Hbf | 70 vol.
- Bremen Hbf | 50 vol.
- Hannover Hbf | 95 vol.
LOAD: 105 vol.
- Hamburg Hbf | 75 vol.
- Kiel Hbf | 30 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: 980 vol. | Vehicle capacity: 300 vol. Loads: [70, 0, 90, 0, 95, 35, 60, 70, 75, 20, 50, 25, 25, 30, 100, 30, 20, 0, 30, 25, 0, 30, 70, 30] ITERATION Generation: #1 Best cost: 6584.419 | Path: [1, 0, 4, 10, 22, 1, 11, 7, 13, 9, 15, 6, 19, 21, 1, 8, 18, 12, 2, 16, 5, 1, 14, 23, 1] Best cost: 6128.519 | Path: [1, 2, 16, 5, 12, 22, 10, 1, 7, 11, 4, 8, 18, 1, 0, 19, 14, 6, 15, 1, 13, 9, 23, 21, 1] Best cost: 6103.583 | Path: [1, 5, 2, 16, 12, 22, 10, 1, 7, 11, 4, 8, 18, 1, 0, 19, 21, 14, 6, 1, 13, 9, 15, 23, 1] Best cost: 6065.161 | Path: [1, 5, 16, 2, 12, 22, 10, 1, 7, 11, 4, 8, 18, 1, 13, 9, 15, 6, 14, 21, 19, 1, 0, 23, 1] Best cost: 6031.852 | Path: [1, 10, 22, 12, 2, 16, 5, 1, 11, 7, 13, 9, 15, 6, 19, 21, 1, 4, 0, 14, 23, 1, 8, 18, 1] Best cost: 5850.238 | Path: [1, 16, 2, 5, 12, 22, 10, 1, 7, 11, 13, 9, 15, 6, 23, 21, 1, 4, 0, 19, 14, 1, 8, 18, 1] Best cost: 5835.023 | Path: [1, 2, 16, 5, 21, 14, 19, 1, 11, 7, 13, 9, 15, 6, 23, 12, 1, 18, 8, 10, 22, 0, 1, 4, 1] Best cost: 5768.890 | Path: [1, 13, 9, 15, 6, 14, 23, 21, 1, 7, 11, 0, 16, 2, 12, 1, 8, 18, 10, 22, 5, 19, 1, 4, 1] Best cost: 5555.560 | Path: [1, 13, 9, 15, 6, 14, 23, 21, 1, 11, 7, 19, 16, 2, 5, 12, 1, 4, 10, 22, 0, 1, 8, 18, 1] OPTIMIZING each tour... Current: [[1, 13, 9, 15, 6, 14, 23, 21, 1], [1, 11, 7, 19, 16, 2, 5, 12, 1], [1, 4, 10, 22, 0, 1], [1, 8, 18, 1]] [2] Cost: 1743.298 to 1649.053 | Optimized: [1, 12, 2, 16, 5, 19, 11, 7, 1] [3] Cost: 1096.719 to 1091.079 | Optimized: [1, 0, 22, 10, 4, 1] ACO RESULTS [1/300 vol./1982.986 km] Berlin Hbf -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Saarbrücken Hbf --> Berlin Hbf [2/290 vol./1649.053 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Aachen Hbf -> Mainz Hbf -> Leipzig Hbf -> Dresden Hbf --> Berlin Hbf [3/285 vol./1091.079 km] Berlin Hbf -> Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Bremen Hbf -> Hannover Hbf --> Berlin Hbf [4/105 vol./ 732.557 km] Berlin Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5455.675 km.