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: 20 customers
- Berlin Hbf (20 vol.)
- Düsseldorf Hbf (20 vol.)
- Frankfurt Hbf (60 vol.)
- Hannover Hbf (35 vol.)
- Aachen Hbf (90 vol.)
- Stuttgart Hbf (45 vol.)
- Dresden Hbf (60 vol.)
- Hamburg Hbf (60 vol.)
- Bremen Hbf (80 vol.)
- Leipzig Hbf (30 vol.)
- Nürnberg Hbf (100 vol.)
- Karlsruhe Hbf (80 vol.)
- Ulm Hbf (35 vol.)
- Köln Hbf (20 vol.)
- Mannheim Hbf (50 vol.)
- Kiel Hbf (70 vol.)
- Mainz Hbf (65 vol.)
- Würzburg Hbf (80 vol.)
- Osnabrück Hbf (45 vol.)
- Freiburg Hbf (100 vol.)
Tour 1
COST: 1585.754 km
LOAD: 400 vol.
- Osnabrück Hbf | 45 vol.
- Hannover Hbf | 35 vol.
- Bremen Hbf | 80 vol.
- Hamburg Hbf | 60 vol.
- Kiel Hbf | 70 vol.
- Berlin Hbf | 20 vol.
- Dresden Hbf | 60 vol.
- Leipzig Hbf | 30 vol.
Tour 2
COST: 1079.014 km
LOAD: 385 vol.
- Frankfurt Hbf | 60 vol.
- Mainz Hbf | 65 vol.
- Mannheim Hbf | 50 vol.
- Karlsruhe Hbf | 80 vol.
- Aachen Hbf | 90 vol.
- Köln Hbf | 20 vol.
- Düsseldorf Hbf | 20 vol.
Tour 3
COST: 1280.891 km
LOAD: 360 vol.
- Würzburg Hbf | 80 vol.
- Nürnberg Hbf | 100 vol.
- Ulm Hbf | 35 vol.
- Stuttgart Hbf | 45 vol.
- Freiburg Hbf | 100 vol.
LOAD: 400 vol.
- Osnabrück Hbf | 45 vol.
- Hannover Hbf | 35 vol.
- Bremen Hbf | 80 vol.
- Hamburg Hbf | 60 vol.
- Kiel Hbf | 70 vol.
- Berlin Hbf | 20 vol.
- Dresden Hbf | 60 vol.
- Leipzig Hbf | 30 vol.
LOAD: 385 vol.
- Frankfurt Hbf | 60 vol.
- Mainz Hbf | 65 vol.
- Mannheim Hbf | 50 vol.
- Karlsruhe Hbf | 80 vol.
- Aachen Hbf | 90 vol.
- Köln Hbf | 20 vol.
- Düsseldorf Hbf | 20 vol.
LOAD: 360 vol.
- Würzburg Hbf | 80 vol.
- Nürnberg Hbf | 100 vol.
- Ulm Hbf | 35 vol.
- Stuttgart Hbf | 45 vol.
- Freiburg Hbf | 100 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: 1145 vol. | Vehicle capacity: 400 vol. Loads: [0, 20, 20, 60, 35, 90, 45, 60, 60, 0, 80, 30, 0, 100, 80, 35, 20, 50, 70, 65, 80, 0, 45, 100] ITERATION Generation: #1 Best cost: 4267.522 | Path: [0, 1, 7, 11, 4, 10, 8, 18, 22, 0, 2, 16, 5, 19, 3, 17, 14, 0, 20, 13, 6, 15, 23, 0] Best cost: 4017.830 | Path: [0, 22, 10, 4, 8, 18, 1, 7, 11, 0, 16, 2, 5, 3, 19, 17, 14, 0, 20, 13, 15, 6, 23, 0] Best cost: 3995.498 | Path: [0, 5, 2, 16, 19, 3, 17, 14, 0, 4, 22, 10, 8, 18, 1, 7, 11, 0, 20, 13, 15, 6, 23, 0] Best cost: 3976.403 | Path: [0, 2, 16, 5, 19, 3, 17, 14, 0, 22, 10, 4, 8, 18, 1, 7, 11, 0, 20, 13, 15, 6, 23, 0] Best cost: 3964.628 | Path: [0, 2, 16, 5, 19, 3, 17, 14, 0, 22, 4, 10, 8, 18, 1, 7, 11, 0, 20, 13, 15, 6, 23, 0] Generation: #2 Best cost: 3964.628 | Path: [0, 22, 4, 10, 8, 18, 1, 7, 11, 0, 2, 16, 5, 19, 3, 17, 14, 0, 20, 13, 15, 6, 23, 0] OPTIMIZING each tour... Current: [[0, 22, 4, 10, 8, 18, 1, 7, 11, 0], [0, 2, 16, 5, 19, 3, 17, 14, 0], [0, 20, 13, 15, 6, 23, 0]] [2] Cost: 1097.983 to 1079.014 | Optimized: [0, 3, 19, 17, 14, 5, 16, 2, 0] ACO RESULTS [1/400 vol./1585.754 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Hannover Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [2/385 vol./1079.014 km] Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Aachen Hbf -> Köln Hbf -> Düsseldorf Hbf --> Kassel-Wilhelmshöhe [3/360 vol./1280.891 km] Kassel-Wilhelmshöhe -> Würzburg Hbf -> Nürnberg Hbf -> Ulm Hbf -> Stuttgart Hbf -> Freiburg Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3945.659 km.