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: 16 customers
- Düsseldorf Hbf (20 vol.)
- Frankfurt Hbf (80 vol.)
- Hannover Hbf (45 vol.)
- Stuttgart Hbf (25 vol.)
- Hamburg Hbf (45 vol.)
- Bremen Hbf (40 vol.)
- Leipzig Hbf (95 vol.)
- Dortmund Hbf (45 vol.)
- Nürnberg Hbf (95 vol.)
- Karlsruhe Hbf (20 vol.)
- Ulm Hbf (80 vol.)
- Köln Hbf (85 vol.)
- Kiel Hbf (85 vol.)
- Würzburg Hbf (25 vol.)
- Saarbrücken Hbf (90 vol.)
- Osnabrück Hbf (30 vol.)
Tour 1
COST: 1666.112 km
LOAD: 295 vol.
- Frankfurt Hbf | 80 vol.
- Saarbrücken Hbf | 90 vol.
- Karlsruhe Hbf | 20 vol.
- Stuttgart Hbf | 25 vol.
- Ulm Hbf | 80 vol.
Tour 2
COST: 1449.15 km
LOAD: 300 vol.
- Köln Hbf | 85 vol.
- Würzburg Hbf | 25 vol.
- Nürnberg Hbf | 95 vol.
- Leipzig Hbf | 95 vol.
Tour 3
COST: 1285.32 km
LOAD: 225 vol.
- Hamburg Hbf | 45 vol.
- Bremen Hbf | 40 vol.
- Osnabrück Hbf | 30 vol.
- Dortmund Hbf | 45 vol.
- Düsseldorf Hbf | 20 vol.
- Hannover Hbf | 45 vol.
Tour 4
COST: 701.943 km
LOAD: 85 vol.
- Kiel Hbf | 85 vol.
LOAD: 295 vol.
- Frankfurt Hbf | 80 vol.
- Saarbrücken Hbf | 90 vol.
- Karlsruhe Hbf | 20 vol.
- Stuttgart Hbf | 25 vol.
- Ulm Hbf | 80 vol.
LOAD: 300 vol.
- Köln Hbf | 85 vol.
- Würzburg Hbf | 25 vol.
- Nürnberg Hbf | 95 vol.
- Leipzig Hbf | 95 vol.
LOAD: 225 vol.
- Hamburg Hbf | 45 vol.
- Bremen Hbf | 40 vol.
- Osnabrück Hbf | 30 vol.
- Dortmund Hbf | 45 vol.
- Düsseldorf Hbf | 20 vol.
- Hannover Hbf | 45 vol.
LOAD: 85 vol.
- Kiel Hbf | 85 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: 905 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 20, 80, 45, 0, 25, 0, 45, 0, 40, 95, 45, 95, 20, 80, 85, 0, 85, 0, 25, 90, 30, 0] ITERATION Generation: #1 Best cost: 6995.911 | Path: [1, 2, 16, 12, 22, 10, 8, 14, 1, 11, 13, 20, 3, 1, 4, 18, 21, 6, 1, 15, 1] Best cost: 6618.671 | Path: [1, 3, 20, 13, 6, 14, 2, 22, 1, 11, 4, 10, 8, 12, 1, 18, 16, 21, 1, 15, 1] Best cost: 5883.651 | Path: [1, 8, 18, 4, 10, 22, 12, 1, 11, 13, 20, 3, 1, 2, 16, 14, 6, 15, 1, 21, 1] Best cost: 5760.122 | Path: [1, 11, 13, 20, 3, 1, 4, 10, 8, 18, 22, 12, 1, 2, 16, 21, 14, 6, 1, 15, 1] Best cost: 5245.254 | Path: [1, 15, 6, 14, 21, 3, 1, 11, 13, 20, 16, 1, 8, 10, 4, 22, 12, 2, 1, 18, 1] OPTIMIZING each tour... Current: [[1, 15, 6, 14, 21, 3, 1], [1, 11, 13, 20, 16, 1], [1, 8, 10, 4, 22, 12, 2, 1], [1, 18, 1]] [1] Cost: 1673.878 to 1666.112 | Optimized: [1, 3, 21, 14, 6, 15, 1] [2] Cost: 1452.439 to 1449.150 | Optimized: [1, 16, 20, 13, 11, 1] [3] Cost: 1416.994 to 1285.320 | Optimized: [1, 8, 10, 22, 12, 2, 4, 1] ACO RESULTS [1/295 vol./1666.112 km] Berlin Hbf -> Frankfurt Hbf -> Saarbrücken Hbf -> Karlsruhe Hbf -> Stuttgart Hbf -> Ulm Hbf --> Berlin Hbf [2/300 vol./1449.150 km] Berlin Hbf -> Köln Hbf -> Würzburg Hbf -> Nürnberg Hbf -> Leipzig Hbf --> Berlin Hbf [3/225 vol./1285.320 km] Berlin Hbf -> Hamburg Hbf -> Bremen Hbf -> Osnabrück Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Hannover Hbf --> Berlin Hbf [4/ 85 vol./ 701.943 km] Berlin Hbf -> Kiel Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5102.525 km.