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: 19 customers
- Düsseldorf Hbf (75 vol.)
- Frankfurt Hbf (90 vol.)
- Hannover Hbf (20 vol.)
- Stuttgart Hbf (55 vol.)
- Dresden Hbf (75 vol.)
- Hamburg Hbf (70 vol.)
- München Hbf (25 vol.)
- Bremen Hbf (80 vol.)
- Dortmund Hbf (40 vol.)
- Nürnberg Hbf (70 vol.)
- Karlsruhe Hbf (95 vol.)
- Ulm Hbf (20 vol.)
- Köln Hbf (45 vol.)
- Mannheim Hbf (45 vol.)
- Kiel Hbf (20 vol.)
- Mainz Hbf (100 vol.)
- Würzburg Hbf (80 vol.)
- Osnabrück Hbf (60 vol.)
- Freiburg Hbf (25 vol.)
Tour 1
COST: 1846.286 km
LOAD: 290 vol.
- München Hbf | 25 vol.
- Ulm Hbf | 20 vol.
- Stuttgart Hbf | 55 vol.
- Karlsruhe Hbf | 95 vol.
- Freiburg Hbf | 25 vol.
- Nürnberg Hbf | 70 vol.
Tour 2
COST: 1255.116 km
LOAD: 265 vol.
- Dresden Hbf | 75 vol.
- Hannover Hbf | 20 vol.
- Bremen Hbf | 80 vol.
- Hamburg Hbf | 70 vol.
- Kiel Hbf | 20 vol.
Tour 3
COST: 1518.325 km
LOAD: 265 vol.
- Mannheim Hbf | 45 vol.
- Köln Hbf | 45 vol.
- Düsseldorf Hbf | 75 vol.
- Dortmund Hbf | 40 vol.
- Osnabrück Hbf | 60 vol.
Tour 4
COST: 1211.245 km
LOAD: 270 vol.
- Mainz Hbf | 100 vol.
- Frankfurt Hbf | 90 vol.
- Würzburg Hbf | 80 vol.
LOAD: 290 vol.
- München Hbf | 25 vol.
- Ulm Hbf | 20 vol.
- Stuttgart Hbf | 55 vol.
- Karlsruhe Hbf | 95 vol.
- Freiburg Hbf | 25 vol.
- Nürnberg Hbf | 70 vol.
LOAD: 265 vol.
- Dresden Hbf | 75 vol.
- Hannover Hbf | 20 vol.
- Bremen Hbf | 80 vol.
- Hamburg Hbf | 70 vol.
- Kiel Hbf | 20 vol.
LOAD: 265 vol.
- Mannheim Hbf | 45 vol.
- Köln Hbf | 45 vol.
- Düsseldorf Hbf | 75 vol.
- Dortmund Hbf | 40 vol.
- Osnabrück Hbf | 60 vol.
LOAD: 270 vol.
- Mainz Hbf | 100 vol.
- Frankfurt Hbf | 90 vol.
- Würzburg 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: 1090 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 75, 90, 20, 0, 55, 75, 70, 25, 80, 0, 40, 70, 95, 20, 45, 45, 20, 100, 80, 0, 60, 25] ITERATION Generation: #1 Best cost: 6394.766 | Path: [1, 2, 16, 12, 22, 10, 1, 7, 20, 13, 9, 15, 23, 1, 8, 18, 4, 3, 19, 1, 6, 14, 17, 1] Best cost: 6287.074 | Path: [1, 6, 14, 17, 19, 1, 7, 13, 20, 15, 9, 23, 1, 8, 18, 10, 22, 12, 4, 1, 3, 16, 2, 1] Best cost: 6233.850 | Path: [1, 2, 16, 12, 22, 10, 1, 7, 13, 20, 6, 15, 1, 8, 18, 4, 3, 19, 1, 17, 14, 23, 9, 1] Best cost: 6220.105 | Path: [1, 13, 20, 3, 17, 1, 7, 9, 15, 6, 14, 23, 1, 4, 8, 10, 22, 12, 18, 1, 2, 16, 19, 1] Best cost: 6025.634 | Path: [1, 23, 14, 6, 15, 9, 13, 1, 7, 8, 18, 10, 4, 1, 22, 12, 2, 16, 17, 1, 20, 3, 19, 1] Best cost: 6008.560 | Path: [1, 18, 8, 10, 22, 12, 4, 1, 7, 20, 3, 17, 1, 13, 15, 6, 14, 23, 9, 1, 19, 16, 2, 1] Generation: #2 Best cost: 5864.498 | Path: [1, 23, 14, 6, 15, 9, 13, 1, 7, 4, 10, 8, 18, 1, 22, 12, 2, 16, 17, 1, 20, 3, 19, 1] Generation: #3 Best cost: 5860.671 | Path: [1, 23, 14, 6, 15, 9, 13, 1, 7, 4, 10, 8, 18, 1, 22, 12, 2, 16, 17, 1, 19, 3, 20, 1] OPTIMIZING each tour... Current: [[1, 23, 14, 6, 15, 9, 13, 1], [1, 7, 4, 10, 8, 18, 1], [1, 22, 12, 2, 16, 17, 1], [1, 19, 3, 20, 1]] [1] Cost: 1870.955 to 1846.286 | Optimized: [1, 9, 15, 6, 14, 23, 13, 1] [3] Cost: 1523.355 to 1518.325 | Optimized: [1, 17, 16, 2, 12, 22, 1] ACO RESULTS [1/290 vol./1846.286 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Nürnberg Hbf --> Berlin Hbf [2/265 vol./1255.116 km] Berlin Hbf -> Dresden Hbf -> Hannover Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [3/265 vol./1518.325 km] Berlin Hbf -> Mannheim Hbf -> Köln Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf --> Berlin Hbf [4/270 vol./1211.245 km] Berlin Hbf -> Mainz Hbf -> Frankfurt Hbf -> Würzburg Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5830.972 km.