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: 14 customers
- Düsseldorf Hbf (100 vol.)
- Hannover Hbf (35 vol.)
- Stuttgart Hbf (50 vol.)
- München Hbf (95 vol.)
- Bremen Hbf (50 vol.)
- Leipzig Hbf (75 vol.)
- Dortmund Hbf (50 vol.)
- Nürnberg Hbf (95 vol.)
- Karlsruhe Hbf (30 vol.)
- Ulm Hbf (80 vol.)
- Mannheim Hbf (65 vol.)
- Kiel Hbf (45 vol.)
- Mainz Hbf (50 vol.)
- Saarbrücken Hbf (95 vol.)
Tour 1
COST: 1663.418 km
LOAD: 290 vol.
- München Hbf | 95 vol.
- Ulm Hbf | 80 vol.
- Stuttgart Hbf | 50 vol.
- Karlsruhe Hbf | 30 vol.
- Hannover Hbf | 35 vol.
Tour 2
COST: 1361.142 km
LOAD: 285 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 65 vol.
- Nürnberg Hbf | 95 vol.
- Leipzig Hbf | 75 vol.
Tour 3
COST: 1688.678 km
LOAD: 295 vol.
- Saarbrücken Hbf | 95 vol.
- Düsseldorf Hbf | 100 vol.
- Dortmund Hbf | 50 vol.
- Bremen Hbf | 50 vol.
Tour 4
COST: 701.943 km
LOAD: 45 vol.
- Kiel Hbf | 45 vol.
LOAD: 290 vol.
- München Hbf | 95 vol.
- Ulm Hbf | 80 vol.
- Stuttgart Hbf | 50 vol.
- Karlsruhe Hbf | 30 vol.
- Hannover Hbf | 35 vol.
LOAD: 285 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 65 vol.
- Nürnberg Hbf | 95 vol.
- Leipzig Hbf | 75 vol.
LOAD: 295 vol.
- Saarbrücken Hbf | 95 vol.
- Düsseldorf Hbf | 100 vol.
- Dortmund Hbf | 50 vol.
- Bremen Hbf | 50 vol.
LOAD: 45 vol.
- Kiel Hbf | 45 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: 915 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 100, 0, 35, 0, 50, 0, 0, 95, 50, 75, 50, 95, 30, 80, 0, 65, 45, 50, 0, 95, 0, 0] ITERATION Generation: #1 Best cost: 6060.555 | Path: [1, 2, 12, 4, 10, 18, 1, 11, 13, 9, 14, 1, 19, 17, 6, 15, 1, 21, 1] Best cost: 5961.239 | Path: [1, 9, 15, 6, 14, 4, 1, 11, 13, 19, 17, 1, 18, 10, 12, 2, 1, 21, 1] Best cost: 5961.068 | Path: [1, 19, 17, 14, 6, 15, 1, 11, 13, 9, 4, 1, 18, 10, 12, 2, 1, 21, 1] Best cost: 5883.502 | Path: [1, 9, 15, 6, 14, 4, 1, 11, 13, 17, 19, 1, 18, 10, 2, 12, 1, 21, 1] Best cost: 5861.126 | Path: [1, 6, 14, 17, 19, 21, 1, 4, 10, 18, 12, 2, 1, 11, 13, 9, 1, 15, 1] Best cost: 5576.885 | Path: [1, 19, 17, 14, 6, 15, 1, 11, 13, 9, 4, 1, 12, 2, 21, 10, 1, 18, 1] Generation: #2 Best cost: 5505.173 | Path: [1, 9, 15, 6, 14, 4, 1, 11, 13, 17, 19, 1, 12, 2, 21, 10, 1, 18, 1] Best cost: 5430.879 | Path: [1, 9, 15, 6, 14, 4, 1, 11, 13, 17, 19, 1, 10, 12, 2, 21, 1, 18, 1] OPTIMIZING each tour... Current: [[1, 9, 15, 6, 14, 4, 1], [1, 11, 13, 17, 19, 1], [1, 10, 12, 2, 21, 1], [1, 18, 1]] [2] Cost: 1364.219 to 1361.142 | Optimized: [1, 19, 17, 13, 11, 1] [3] Cost: 1701.299 to 1688.678 | Optimized: [1, 21, 2, 12, 10, 1] ACO RESULTS [1/290 vol./1663.418 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Hannover Hbf --> Berlin Hbf [2/285 vol./1361.142 km] Berlin Hbf -> Mainz Hbf -> Mannheim Hbf -> Nürnberg Hbf -> Leipzig Hbf --> Berlin Hbf [3/295 vol./1688.678 km] Berlin Hbf -> Saarbrücken Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Bremen Hbf --> Berlin Hbf [4/ 45 vol./ 701.943 km] Berlin Hbf -> Kiel Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5415.181 km.