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: 17 customers
- Düsseldorf Hbf (55 vol.)
- Frankfurt Hbf (40 vol.)
- Hannover Hbf (50 vol.)
- Aachen Hbf (70 vol.)
- Stuttgart Hbf (20 vol.)
- Dresden Hbf (95 vol.)
- München Hbf (60 vol.)
- Bremen Hbf (85 vol.)
- Dortmund Hbf (90 vol.)
- Nürnberg Hbf (25 vol.)
- Karlsruhe Hbf (65 vol.)
- Ulm Hbf (25 vol.)
- Köln Hbf (20 vol.)
- Mannheim Hbf (85 vol.)
- Mainz Hbf (20 vol.)
- Osnabrück Hbf (95 vol.)
- Freiburg Hbf (45 vol.)
Tour 1
COST: 1551.107 km
LOAD: 395 vol.
- Dresden Hbf | 95 vol.
- Nürnberg Hbf | 25 vol.
- München Hbf | 60 vol.
- Ulm Hbf | 25 vol.
- Stuttgart Hbf | 20 vol.
- Karlsruhe Hbf | 65 vol.
- Mannheim Hbf | 85 vol.
- Mainz Hbf | 20 vol.
Tour 2
COST: 1019.001 km
LOAD: 375 vol.
- Aachen Hbf | 70 vol.
- Köln Hbf | 20 vol.
- Düsseldorf Hbf | 55 vol.
- Osnabrück Hbf | 95 vol.
- Bremen Hbf | 85 vol.
- Hannover Hbf | 50 vol.
Tour 3
COST: 1112.642 km
LOAD: 175 vol.
- Frankfurt Hbf | 40 vol.
- Freiburg Hbf | 45 vol.
- Dortmund Hbf | 90 vol.
LOAD: 395 vol.
- Dresden Hbf | 95 vol.
- Nürnberg Hbf | 25 vol.
- München Hbf | 60 vol.
- Ulm Hbf | 25 vol.
- Stuttgart Hbf | 20 vol.
- Karlsruhe Hbf | 65 vol.
- Mannheim Hbf | 85 vol.
- Mainz Hbf | 20 vol.
LOAD: 375 vol.
- Aachen Hbf | 70 vol.
- Köln Hbf | 20 vol.
- Düsseldorf Hbf | 55 vol.
- Osnabrück Hbf | 95 vol.
- Bremen Hbf | 85 vol.
- Hannover Hbf | 50 vol.
LOAD: 175 vol.
- Frankfurt Hbf | 40 vol.
- Freiburg Hbf | 45 vol.
- Dortmund Hbf | 90 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: 945 vol. | Vehicle capacity: 400 vol. Loads: [0, 0, 55, 40, 50, 70, 20, 95, 0, 60, 85, 0, 90, 25, 65, 25, 20, 85, 0, 20, 0, 0, 95, 45] ITERATION Generation: #1 Best cost: 4187.663 | Path: [0, 2, 16, 5, 12, 22, 4, 19, 0, 3, 17, 14, 6, 15, 9, 13, 23, 0, 10, 7, 0] Best cost: 3959.976 | Path: [0, 4, 10, 22, 12, 2, 16, 0, 3, 19, 17, 14, 6, 15, 9, 13, 23, 0, 5, 7, 0] Best cost: 3818.638 | Path: [0, 7, 13, 9, 15, 6, 14, 17, 19, 0, 4, 22, 10, 2, 16, 5, 0, 3, 23, 12, 0] Best cost: 3805.003 | Path: [0, 7, 13, 9, 15, 6, 14, 17, 19, 0, 12, 2, 16, 5, 3, 23, 4, 0, 22, 10, 0] Best cost: 3802.539 | Path: [0, 3, 19, 17, 14, 6, 15, 9, 13, 23, 0, 12, 2, 16, 5, 22, 4, 0, 10, 7, 0] Best cost: 3726.494 | Path: [0, 23, 14, 6, 15, 9, 13, 17, 19, 3, 0, 12, 2, 16, 5, 22, 4, 0, 10, 7, 0] Generation: #2 Best cost: 3707.635 | Path: [0, 7, 13, 9, 15, 6, 14, 17, 19, 0, 4, 10, 22, 12, 2, 16, 0, 3, 23, 5, 0] Generation: #3 Best cost: 3707.635 | Path: [0, 4, 10, 22, 12, 2, 16, 0, 7, 13, 9, 15, 6, 14, 17, 19, 0, 3, 23, 5, 0] Generation: #5 Best cost: 3696.114 | Path: [0, 7, 13, 9, 15, 6, 14, 17, 19, 0, 4, 10, 22, 2, 16, 5, 0, 12, 3, 23, 0] OPTIMIZING each tour... Current: [[0, 7, 13, 9, 15, 6, 14, 17, 19, 0], [0, 4, 10, 22, 2, 16, 5, 0], [0, 12, 3, 23, 0]] [2] Cost: 1031.490 to 1019.001 | Optimized: [0, 5, 16, 2, 22, 10, 4, 0] [3] Cost: 1113.517 to 1112.642 | Optimized: [0, 3, 23, 12, 0] ACO RESULTS [1/395 vol./1551.107 km] Kassel-Wilhelmshöhe -> Dresden Hbf -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Mannheim Hbf -> Mainz Hbf --> Kassel-Wilhelmshöhe [2/375 vol./1019.001 km] Kassel-Wilhelmshöhe -> Aachen Hbf -> Köln Hbf -> Düsseldorf Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hannover Hbf --> Kassel-Wilhelmshöhe [3/175 vol./1112.642 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Freiburg Hbf -> Dortmund Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3682.750 km.