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: 18 customers
- Kassel-Wilhelmshöhe (35 vol.)
- Düsseldorf Hbf (40 vol.)
- Aachen Hbf (45 vol.)
- Stuttgart Hbf (20 vol.)
- Dresden Hbf (95 vol.)
- Hamburg Hbf (20 vol.)
- München Hbf (70 vol.)
- Bremen Hbf (85 vol.)
- Leipzig Hbf (40 vol.)
- Dortmund Hbf (75 vol.)
- Nürnberg Hbf (100 vol.)
- Karlsruhe Hbf (95 vol.)
- Ulm Hbf (30 vol.)
- Kiel Hbf (55 vol.)
- Würzburg Hbf (75 vol.)
- Saarbrücken Hbf (75 vol.)
- Osnabrück Hbf (95 vol.)
- Freiburg Hbf (65 vol.)
Tour 1
COST: 1245.897 km
LOAD: 295 vol.
- Dresden Hbf | 95 vol.
- Leipzig Hbf | 40 vol.
- Bremen Hbf | 85 vol.
- Hamburg Hbf | 20 vol.
- Kiel Hbf | 55 vol.
Tour 2
COST: 1386.157 km
LOAD: 290 vol.
- Kassel-Wilhelmshöhe | 35 vol.
- Dortmund Hbf | 75 vol.
- Düsseldorf Hbf | 40 vol.
- Aachen Hbf | 45 vol.
- Osnabrück Hbf | 95 vol.
Tour 3
COST: 1391.267 km
LOAD: 290 vol.
- Würzburg Hbf | 75 vol.
- Karlsruhe Hbf | 95 vol.
- Stuttgart Hbf | 20 vol.
- Nürnberg Hbf | 100 vol.
Tour 4
COST: 1939.904 km
LOAD: 240 vol.
- München Hbf | 70 vol.
- Ulm Hbf | 30 vol.
- Freiburg Hbf | 65 vol.
- Saarbrücken Hbf | 75 vol.
LOAD: 295 vol.
- Dresden Hbf | 95 vol.
- Leipzig Hbf | 40 vol.
- Bremen Hbf | 85 vol.
- Hamburg Hbf | 20 vol.
- Kiel Hbf | 55 vol.
LOAD: 290 vol.
- Kassel-Wilhelmshöhe | 35 vol.
- Dortmund Hbf | 75 vol.
- Düsseldorf Hbf | 40 vol.
- Aachen Hbf | 45 vol.
- Osnabrück Hbf | 95 vol.
LOAD: 290 vol.
- Würzburg Hbf | 75 vol.
- Karlsruhe Hbf | 95 vol.
- Stuttgart Hbf | 20 vol.
- Nürnberg Hbf | 100 vol.
LOAD: 240 vol.
- München Hbf | 70 vol.
- Ulm Hbf | 30 vol.
- Freiburg Hbf | 65 vol.
- Saarbrücken Hbf | 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: 1115 vol. | Vehicle capacity: 300 vol. Loads: [35, 0, 40, 0, 0, 45, 20, 95, 20, 70, 85, 40, 75, 100, 95, 30, 0, 0, 55, 0, 75, 75, 95, 65] ITERATION Generation: #1 Best cost: 6401.052 | Path: [1, 0, 22, 10, 8, 18, 1, 11, 7, 13, 6, 15, 1, 2, 12, 5, 21, 23, 1, 20, 14, 9, 1] Best cost: 6217.885 | Path: [1, 5, 2, 12, 22, 0, 1, 7, 11, 10, 8, 18, 1, 13, 20, 14, 6, 1, 23, 21, 15, 9, 1] Best cost: 6141.401 | Path: [1, 12, 2, 5, 22, 0, 1, 7, 11, 10, 8, 18, 1, 20, 13, 9, 15, 6, 1, 21, 14, 23, 1] Best cost: 6104.588 | Path: [1, 15, 6, 14, 23, 21, 1, 11, 7, 10, 8, 18, 1, 0, 22, 12, 2, 5, 1, 13, 20, 9, 1] Best cost: 6048.201 | Path: [1, 22, 12, 2, 5, 0, 1, 8, 18, 10, 11, 7, 1, 13, 20, 6, 14, 1, 9, 15, 23, 21, 1] Best cost: 6026.558 | Path: [1, 22, 12, 2, 5, 0, 1, 7, 11, 10, 8, 18, 1, 13, 20, 6, 14, 1, 9, 15, 23, 21, 1] Generation: #2 Best cost: 6021.239 | Path: [1, 7, 11, 10, 8, 18, 1, 0, 12, 2, 5, 22, 1, 13, 20, 6, 14, 1, 9, 15, 23, 21, 1] OPTIMIZING each tour... Current: [[1, 7, 11, 10, 8, 18, 1], [1, 0, 12, 2, 5, 22, 1], [1, 13, 20, 6, 14, 1], [1, 9, 15, 23, 21, 1]] [3] Cost: 1449.281 to 1391.267 | Optimized: [1, 20, 14, 6, 13, 1] ACO RESULTS [1/295 vol./1245.897 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [2/290 vol./1386.157 km] Berlin Hbf -> Kassel-Wilhelmshöhe -> Dortmund Hbf -> Düsseldorf Hbf -> Aachen Hbf -> Osnabrück Hbf --> Berlin Hbf [3/290 vol./1391.267 km] Berlin Hbf -> Würzburg Hbf -> Karlsruhe Hbf -> Stuttgart Hbf -> Nürnberg Hbf --> Berlin Hbf [4/240 vol./1939.904 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Freiburg Hbf -> Saarbrücken Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5963.225 km.