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
- Kassel-Wilhelmshöhe (20 vol.)
- Düsseldorf Hbf (80 vol.)
- Aachen Hbf (65 vol.)
- Dresden Hbf (70 vol.)
- Hamburg Hbf (35 vol.)
- München Hbf (75 vol.)
- Bremen Hbf (40 vol.)
- Leipzig Hbf (90 vol.)
- Dortmund Hbf (45 vol.)
- Nürnberg Hbf (85 vol.)
- Karlsruhe Hbf (70 vol.)
- Ulm Hbf (65 vol.)
- Mannheim Hbf (80 vol.)
- Saarbrücken Hbf (65 vol.)
- Osnabrück Hbf (25 vol.)
- Freiburg Hbf (40 vol.)
Tour 1
COST: 1280.341 km
LOAD: 280 vol.
- Dresden Hbf | 70 vol.
- Leipzig Hbf | 90 vol.
- Kassel-Wilhelmshöhe | 20 vol.
- Osnabrück Hbf | 25 vol.
- Bremen Hbf | 40 vol.
- Hamburg Hbf | 35 vol.
Tour 2
COST: 1911.913 km
LOAD: 295 vol.
- Dortmund Hbf | 45 vol.
- Düsseldorf Hbf | 80 vol.
- Aachen Hbf | 65 vol.
- Saarbrücken Hbf | 65 vol.
- Freiburg Hbf | 40 vol.
Tour 3
COST: 1573.588 km
LOAD: 290 vol.
- München Hbf | 75 vol.
- Ulm Hbf | 65 vol.
- Karlsruhe Hbf | 70 vol.
- Mannheim Hbf | 80 vol.
Tour 4
COST: 869.684 km
LOAD: 85 vol.
- Nürnberg Hbf | 85 vol.
LOAD: 280 vol.
- Dresden Hbf | 70 vol.
- Leipzig Hbf | 90 vol.
- Kassel-Wilhelmshöhe | 20 vol.
- Osnabrück Hbf | 25 vol.
- Bremen Hbf | 40 vol.
- Hamburg Hbf | 35 vol.
LOAD: 295 vol.
- Dortmund Hbf | 45 vol.
- Düsseldorf Hbf | 80 vol.
- Aachen Hbf | 65 vol.
- Saarbrücken Hbf | 65 vol.
- Freiburg Hbf | 40 vol.
LOAD: 290 vol.
- München Hbf | 75 vol.
- Ulm Hbf | 65 vol.
- Karlsruhe Hbf | 70 vol.
- Mannheim Hbf | 80 vol.
LOAD: 85 vol.
- Nürnberg 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: 950 vol. | Vehicle capacity: 300 vol. Loads: [20, 0, 80, 0, 0, 65, 0, 70, 35, 75, 40, 90, 45, 85, 70, 65, 0, 80, 0, 0, 0, 65, 25, 40] ITERATION Generation: #1 Best cost: 6437.596 | Path: [1, 0, 12, 2, 5, 22, 10, 1, 7, 11, 13, 23, 1, 8, 14, 17, 21, 1, 9, 15, 1] Best cost: 6306.970 | Path: [1, 5, 2, 12, 22, 10, 8, 1, 7, 11, 0, 17, 23, 1, 13, 9, 15, 14, 1, 21, 1] Best cost: 6229.125 | Path: [1, 7, 11, 0, 12, 22, 10, 1, 8, 2, 5, 21, 23, 1, 13, 9, 15, 14, 1, 17, 1] Best cost: 6060.991 | Path: [1, 11, 7, 13, 0, 22, 1, 8, 10, 12, 2, 5, 1, 17, 14, 23, 21, 1, 15, 9, 1] Best cost: 5979.240 | Path: [1, 14, 17, 15, 9, 1, 7, 11, 0, 12, 22, 10, 1, 8, 2, 5, 21, 23, 1, 13, 1] Best cost: 5642.396 | Path: [1, 17, 14, 15, 9, 1, 7, 11, 0, 22, 10, 8, 1, 12, 2, 5, 21, 23, 1, 13, 1] Generation: #2 Best cost: 5635.526 | Path: [1, 7, 11, 0, 22, 10, 8, 1, 12, 2, 5, 21, 23, 1, 9, 15, 14, 17, 1, 13, 1] OPTIMIZING each tour... Current: [[1, 7, 11, 0, 22, 10, 8, 1], [1, 12, 2, 5, 21, 23, 1], [1, 9, 15, 14, 17, 1], [1, 13, 1]] No changes made. ACO RESULTS [1/280 vol./1280.341 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf --> Berlin Hbf [2/295 vol./1911.913 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Aachen Hbf -> Saarbrücken Hbf -> Freiburg Hbf --> Berlin Hbf [3/290 vol./1573.588 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Karlsruhe Hbf -> Mannheim Hbf --> Berlin Hbf [4/ 85 vol./ 869.684 km] Berlin Hbf -> Nürnberg Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5635.526 km.