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
- Kassel-Wilhelmshöhe (65 vol.)
- München Hbf (60 vol.)
- Bremen Hbf (25 vol.)
- Leipzig Hbf (20 vol.)
- Dortmund Hbf (65 vol.)
- Nürnberg Hbf (75 vol.)
- Karlsruhe Hbf (45 vol.)
- Ulm Hbf (40 vol.)
- Köln Hbf (45 vol.)
- Kiel Hbf (45 vol.)
- Mainz Hbf (35 vol.)
- Würzburg Hbf (100 vol.)
- Saarbrücken Hbf (95 vol.)
- Freiburg Hbf (25 vol.)
Tour 1
COST: 1945.066 km
LOAD: 300 vol.
- München Hbf | 60 vol.
- Ulm Hbf | 40 vol.
- Karlsruhe Hbf | 45 vol.
- Freiburg Hbf | 25 vol.
- Saarbrücken Hbf | 95 vol.
- Mainz Hbf | 35 vol.
Tour 2
COST: 1587.459 km
LOAD: 265 vol.
- Leipzig Hbf | 20 vol.
- Kassel-Wilhelmshöhe | 65 vol.
- Dortmund Hbf | 65 vol.
- Köln Hbf | 45 vol.
- Bremen Hbf | 25 vol.
- Kiel Hbf | 45 vol.
Tour 3
COST: 1024.947 km
LOAD: 175 vol.
- Würzburg Hbf | 100 vol.
- Nürnberg Hbf | 75 vol.
LOAD: 300 vol.
- München Hbf | 60 vol.
- Ulm Hbf | 40 vol.
- Karlsruhe Hbf | 45 vol.
- Freiburg Hbf | 25 vol.
- Saarbrücken Hbf | 95 vol.
- Mainz Hbf | 35 vol.
LOAD: 265 vol.
- Leipzig Hbf | 20 vol.
- Kassel-Wilhelmshöhe | 65 vol.
- Dortmund Hbf | 65 vol.
- Köln Hbf | 45 vol.
- Bremen Hbf | 25 vol.
- Kiel Hbf | 45 vol.
LOAD: 175 vol.
- Würzburg Hbf | 100 vol.
- Nürnberg Hbf | 75 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: 740 vol. | Vehicle capacity: 300 vol. Loads: [65, 0, 0, 0, 0, 0, 0, 0, 0, 60, 25, 20, 65, 75, 45, 40, 45, 0, 45, 35, 100, 95, 0, 25] ITERATION Generation: #1 Best cost: 5814.376 | Path: [1, 0, 12, 16, 19, 14, 23, 11, 1, 10, 18, 20, 13, 15, 1, 9, 21, 1] Best cost: 5016.873 | Path: [1, 9, 15, 14, 23, 21, 19, 1, 11, 12, 16, 10, 18, 0, 1, 13, 20, 1] Best cost: 4558.338 | Path: [1, 9, 15, 14, 23, 21, 19, 1, 18, 10, 12, 16, 0, 11, 1, 20, 13, 1] Generation: #2 Best cost: 4557.472 | Path: [1, 9, 15, 14, 23, 21, 19, 1, 11, 0, 12, 16, 10, 18, 1, 20, 13, 1] OPTIMIZING each tour... Current: [[1, 9, 15, 14, 23, 21, 19, 1], [1, 11, 0, 12, 16, 10, 18, 1], [1, 20, 13, 1]] No changes made. ACO RESULTS [1/300 vol./1945.066 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Mainz Hbf --> Berlin Hbf [2/265 vol./1587.459 km] Berlin Hbf -> Leipzig Hbf -> Kassel-Wilhelmshöhe -> Dortmund Hbf -> Köln Hbf -> Bremen Hbf -> Kiel Hbf --> Berlin Hbf [3/175 vol./1024.947 km] Berlin Hbf -> Würzburg Hbf -> Nürnberg Hbf --> Berlin Hbf OPTIMIZATION RESULT: 3 tours | 4557.472 km.