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 (65 vol.)
- Düsseldorf Hbf (90 vol.)
- Frankfurt Hbf (90 vol.)
- Hannover Hbf (85 vol.)
- Aachen Hbf (95 vol.)
- Stuttgart Hbf (80 vol.)
- Dresden Hbf (80 vol.)
- München Hbf (45 vol.)
- Bremen Hbf (70 vol.)
- Leipzig Hbf (30 vol.)
- Dortmund Hbf (40 vol.)
- Nürnberg Hbf (85 vol.)
- Karlsruhe Hbf (70 vol.)
- Ulm Hbf (70 vol.)
- Köln Hbf (65 vol.)
- Kiel Hbf (70 vol.)
- Würzburg Hbf (90 vol.)
- Osnabrück Hbf (45 vol.)
- Freiburg Hbf (40 vol.)
Tour 1
COST: 1390.776 km
LOAD: 390 vol.
- Nürnberg Hbf | 85 vol.
- München Hbf | 45 vol.
- Ulm Hbf | 70 vol.
- Stuttgart Hbf | 80 vol.
- Karlsruhe Hbf | 70 vol.
- Freiburg Hbf | 40 vol.
Tour 2
COST: 1441.48 km
LOAD: 400 vol.
- Hannover Hbf | 85 vol.
- Bremen Hbf | 70 vol.
- Kiel Hbf | 70 vol.
- Berlin Hbf | 65 vol.
- Dresden Hbf | 80 vol.
- Leipzig Hbf | 30 vol.
Tour 3
COST: 804.366 km
LOAD: 380 vol.
- Dortmund Hbf | 40 vol.
- Düsseldorf Hbf | 90 vol.
- Köln Hbf | 65 vol.
- Aachen Hbf | 95 vol.
- Frankfurt Hbf | 90 vol.
Tour 4
COST: 764.624 km
LOAD: 135 vol.
- Osnabrück Hbf | 45 vol.
- Würzburg Hbf | 90 vol.
LOAD: 390 vol.
- Nürnberg Hbf | 85 vol.
- München Hbf | 45 vol.
- Ulm Hbf | 70 vol.
- Stuttgart Hbf | 80 vol.
- Karlsruhe Hbf | 70 vol.
- Freiburg Hbf | 40 vol.
LOAD: 400 vol.
- Hannover Hbf | 85 vol.
- Bremen Hbf | 70 vol.
- Kiel Hbf | 70 vol.
- Berlin Hbf | 65 vol.
- Dresden Hbf | 80 vol.
- Leipzig Hbf | 30 vol.
LOAD: 380 vol.
- Dortmund Hbf | 40 vol.
- Düsseldorf Hbf | 90 vol.
- Köln Hbf | 65 vol.
- Aachen Hbf | 95 vol.
- Frankfurt Hbf | 90 vol.
LOAD: 135 vol.
- Osnabrück Hbf | 45 vol.
- Würzburg 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: 1305 vol. | Vehicle capacity: 400 vol. Loads: [0, 65, 90, 90, 85, 95, 80, 80, 0, 45, 70, 30, 40, 85, 70, 70, 65, 0, 70, 0, 90, 0, 45, 40] ITERATION Generation: #1 Best cost: 5276.627 | Path: [0, 1, 11, 7, 12, 2, 16, 0, 22, 10, 4, 18, 5, 0, 3, 14, 6, 15, 9, 23, 0, 20, 13, 0] Best cost: 5030.937 | Path: [0, 2, 5, 16, 12, 22, 11, 0, 3, 14, 6, 15, 23, 9, 0, 4, 10, 18, 1, 7, 0, 20, 13, 0] Best cost: 4903.161 | Path: [0, 9, 15, 6, 14, 23, 3, 0, 12, 2, 16, 5, 22, 1, 0, 4, 10, 18, 7, 11, 0, 20, 13, 0] Best cost: 4881.478 | Path: [0, 12, 2, 16, 5, 3, 0, 22, 10, 4, 18, 1, 11, 0, 20, 13, 9, 15, 6, 0, 14, 23, 7, 0] Best cost: 4729.532 | Path: [0, 2, 16, 5, 12, 22, 11, 0, 4, 10, 18, 1, 7, 0, 20, 13, 9, 15, 6, 0, 3, 14, 23, 0] Best cost: 4645.463 | Path: [0, 23, 14, 6, 15, 9, 13, 0, 12, 2, 16, 5, 22, 11, 0, 4, 10, 18, 1, 7, 0, 3, 20, 0] Best cost: 4627.445 | Path: [0, 23, 14, 6, 15, 9, 13, 0, 4, 22, 10, 18, 1, 11, 0, 12, 2, 16, 5, 3, 0, 20, 7, 0] Generation: #2 Best cost: 4416.468 | Path: [0, 23, 14, 6, 15, 9, 13, 0, 12, 2, 16, 5, 3, 0, 4, 10, 18, 1, 7, 11, 0, 22, 20, 0] Generation: #3 Best cost: 4401.246 | Path: [0, 13, 9, 15, 6, 14, 23, 0, 4, 10, 18, 1, 7, 11, 0, 12, 2, 16, 5, 3, 0, 22, 20, 0] OPTIMIZING each tour... Current: [[0, 13, 9, 15, 6, 14, 23, 0], [0, 4, 10, 18, 1, 7, 11, 0], [0, 12, 2, 16, 5, 3, 0], [0, 22, 20, 0]] No changes made. ACO RESULTS [1/390 vol./1390.776 km] Kassel-Wilhelmshöhe -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf --> Kassel-Wilhelmshöhe [2/400 vol./1441.480 km] Kassel-Wilhelmshöhe -> Hannover Hbf -> Bremen Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [3/380 vol./ 804.366 km] Kassel-Wilhelmshöhe -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Aachen Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [4/135 vol./ 764.624 km] Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Würzburg Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 4 tours | 4401.246 km.