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: 400 vol.
ACTIVE: 19 customers
- Berlin Hbf (60 vol.)
- Düsseldorf Hbf (40 vol.)
- Frankfurt Hbf (40 vol.)
- Aachen Hbf (75 vol.)
- Stuttgart Hbf (20 vol.)
- Dresden Hbf (55 vol.)
- München Hbf (75 vol.)
- Bremen Hbf (25 vol.)
- Leipzig Hbf (100 vol.)
- Nürnberg Hbf (95 vol.)
- Karlsruhe Hbf (60 vol.)
- Ulm Hbf (100 vol.)
- Köln Hbf (55 vol.)
- Mannheim Hbf (85 vol.)
- Mainz Hbf (60 vol.)
- Würzburg Hbf (50 vol.)
- Saarbrücken Hbf (70 vol.)
- Osnabrück Hbf (75 vol.)
- Freiburg Hbf (60 vol.)
Tour 1
COST: 1173.792 km
LOAD: 400 vol.
- München Hbf | 75 vol.
- Ulm Hbf | 100 vol.
- Stuttgart Hbf | 20 vol.
- Karlsruhe Hbf | 60 vol.
- Mannheim Hbf | 85 vol.
- Mainz Hbf | 60 vol.
Tour 2
COST: 1634.095 km
LOAD: 400 vol.
- Osnabrück Hbf | 75 vol.
- Bremen Hbf | 25 vol.
- Düsseldorf Hbf | 40 vol.
- Köln Hbf | 55 vol.
- Aachen Hbf | 75 vol.
- Saarbrücken Hbf | 70 vol.
- Freiburg Hbf | 60 vol.
Tour 3
COST: 1417.71 km
LOAD: 400 vol.
- Frankfurt Hbf | 40 vol.
- Würzburg Hbf | 50 vol.
- Nürnberg Hbf | 95 vol.
- Leipzig Hbf | 100 vol.
- Dresden Hbf | 55 vol.
- Berlin Hbf | 60 vol.
LOAD: 400 vol.
- München Hbf | 75 vol.
- Ulm Hbf | 100 vol.
- Stuttgart Hbf | 20 vol.
- Karlsruhe Hbf | 60 vol.
- Mannheim Hbf | 85 vol.
- Mainz Hbf | 60 vol.
LOAD: 400 vol.
- Osnabrück Hbf | 75 vol.
- Bremen Hbf | 25 vol.
- Düsseldorf Hbf | 40 vol.
- Köln Hbf | 55 vol.
- Aachen Hbf | 75 vol.
- Saarbrücken Hbf | 70 vol.
- Freiburg Hbf | 60 vol.
LOAD: 400 vol.
- Frankfurt Hbf | 40 vol.
- Würzburg Hbf | 50 vol.
- Nürnberg Hbf | 95 vol.
- Leipzig Hbf | 100 vol.
- Dresden Hbf | 55 vol.
- Berlin Hbf | 60 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: [0] Kassel-Wilhelmshöhe | Number of cities: 24 | Total loads: 1200 vol. | Vehicle capacity: 400 vol. Loads: [0, 60, 40, 40, 0, 75, 20, 55, 0, 75, 25, 100, 0, 95, 60, 100, 55, 85, 0, 60, 50, 70, 75, 60] ITERATION Generation: #1 Best cost: 5142.648 | Path: [0, 1, 11, 7, 13, 20, 3, 0, 22, 10, 2, 16, 5, 19, 14, 0, 17, 21, 6, 15, 9, 0, 23, 0] Best cost: 4989.734 | Path: [0, 11, 7, 1, 10, 22, 2, 3, 0, 16, 5, 19, 17, 14, 6, 0, 20, 13, 9, 15, 23, 0, 21, 0] Best cost: 4938.454 | Path: [0, 21, 17, 14, 6, 15, 20, 0, 22, 10, 2, 16, 5, 19, 3, 0, 11, 7, 1, 13, 9, 0, 23, 0] Best cost: 4722.532 | Path: [0, 9, 15, 6, 14, 17, 3, 0, 22, 10, 2, 16, 5, 21, 19, 0, 20, 13, 11, 7, 1, 0, 23, 0] Best cost: 4323.600 | Path: [0, 11, 7, 1, 19, 3, 17, 0, 20, 13, 9, 15, 6, 14, 0, 22, 10, 2, 16, 5, 21, 23, 0] Best cost: 4321.254 | Path: [0, 1, 11, 7, 13, 20, 3, 0, 22, 10, 2, 16, 5, 21, 19, 0, 17, 14, 6, 15, 9, 23, 0] Best cost: 4271.004 | Path: [0, 11, 7, 1, 13, 20, 3, 0, 19, 17, 14, 6, 15, 9, 0, 22, 10, 2, 16, 5, 21, 23, 0] Generation: #2 Best cost: 4240.337 | Path: [0, 1, 7, 11, 13, 20, 3, 0, 19, 17, 14, 6, 15, 9, 0, 22, 10, 2, 16, 5, 21, 23, 0] Best cost: 4225.597 | Path: [0, 9, 15, 6, 14, 17, 19, 0, 22, 10, 2, 16, 5, 21, 23, 0, 3, 20, 13, 11, 7, 1, 0] OPTIMIZING each tour... Current: [[0, 9, 15, 6, 14, 17, 19, 0], [0, 22, 10, 2, 16, 5, 21, 23, 0], [0, 3, 20, 13, 11, 7, 1, 0]] No changes made. ACO RESULTS [1/400 vol./1173.792 km] Kassel-Wilhelmshöhe -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Mannheim Hbf -> Mainz Hbf --> Kassel-Wilhelmshöhe [2/400 vol./1634.095 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Bremen Hbf -> Düsseldorf Hbf -> Köln Hbf -> Aachen Hbf -> Saarbrücken Hbf -> Freiburg Hbf --> Kassel-Wilhelmshöhe [3/400 vol./1417.710 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Würzburg Hbf -> Nürnberg Hbf -> Leipzig Hbf -> Dresden Hbf -> Berlin Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 4225.597 km.