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: 19 customers
- Kassel-Wilhelmshöhe (75 vol.)
- Düsseldorf Hbf (40 vol.)
- Frankfurt Hbf (95 vol.)
- Hannover Hbf (85 vol.)
- Aachen Hbf (40 vol.)
- Stuttgart Hbf (35 vol.)
- Dresden Hbf (90 vol.)
- Bremen Hbf (50 vol.)
- Leipzig Hbf (55 vol.)
- Dortmund Hbf (60 vol.)
- Karlsruhe Hbf (25 vol.)
- Ulm Hbf (70 vol.)
- Köln Hbf (85 vol.)
- Mannheim Hbf (100 vol.)
- Kiel Hbf (75 vol.)
- Mainz Hbf (65 vol.)
- Würzburg Hbf (25 vol.)
- Saarbrücken Hbf (35 vol.)
- Freiburg Hbf (80 vol.)
Tour 1
COST: 1329.758 km
LOAD: 285 vol.
- Frankfurt Hbf | 95 vol.
- Mainz Hbf | 65 vol.
- Mannheim Hbf | 100 vol.
- Würzburg Hbf | 25 vol.
Tour 2
COST: 1082.275 km
LOAD: 280 vol.
- Dresden Hbf | 90 vol.
- Leipzig Hbf | 55 vol.
- Hannover Hbf | 85 vol.
- Bremen Hbf | 50 vol.
Tour 3
COST: 1370.534 km
LOAD: 300 vol.
- Dortmund Hbf | 60 vol.
- Düsseldorf Hbf | 40 vol.
- Köln Hbf | 85 vol.
- Aachen Hbf | 40 vol.
- Kassel-Wilhelmshöhe | 75 vol.
Tour 4
COST: 1857.095 km
LOAD: 245 vol.
- Ulm Hbf | 70 vol.
- Stuttgart Hbf | 35 vol.
- Karlsruhe Hbf | 25 vol.
- Freiburg Hbf | 80 vol.
- Saarbrücken Hbf | 35 vol.
Tour 5
COST: 701.943 km
LOAD: 75 vol.
- Kiel Hbf | 75 vol.
LOAD: 285 vol.
- Frankfurt Hbf | 95 vol.
- Mainz Hbf | 65 vol.
- Mannheim Hbf | 100 vol.
- Würzburg Hbf | 25 vol.
LOAD: 280 vol.
- Dresden Hbf | 90 vol.
- Leipzig Hbf | 55 vol.
- Hannover Hbf | 85 vol.
- Bremen Hbf | 50 vol.
LOAD: 300 vol.
- Dortmund Hbf | 60 vol.
- Düsseldorf Hbf | 40 vol.
- Köln Hbf | 85 vol.
- Aachen Hbf | 40 vol.
- Kassel-Wilhelmshöhe | 75 vol.
LOAD: 245 vol.
- Ulm Hbf | 70 vol.
- Stuttgart Hbf | 35 vol.
- Karlsruhe Hbf | 25 vol.
- Freiburg Hbf | 80 vol.
- Saarbrücken Hbf | 35 vol.
LOAD: 75 vol.
- Kiel 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: 1185 vol. | Vehicle capacity: 300 vol. Loads: [75, 0, 40, 95, 85, 40, 35, 90, 0, 0, 50, 55, 60, 0, 25, 70, 85, 100, 75, 65, 25, 35, 0, 80] ITERATION Generation: #1 Best cost: 7211.516 | Path: [1, 0, 3, 19, 14, 6, 1, 11, 7, 4, 10, 1, 18, 12, 2, 16, 5, 1, 15, 17, 21, 23, 1, 20, 1] Best cost: 7128.679 | Path: [1, 15, 6, 14, 17, 19, 1, 11, 7, 20, 3, 21, 1, 4, 10, 18, 5, 2, 1, 12, 16, 0, 23, 1] Best cost: 6746.365 | Path: [1, 16, 2, 5, 12, 0, 1, 11, 7, 3, 14, 6, 1, 4, 10, 18, 19, 20, 1, 17, 21, 23, 15, 1] Best cost: 6713.543 | Path: [1, 10, 4, 0, 11, 20, 1, 7, 15, 6, 14, 23, 1, 18, 12, 2, 16, 5, 1, 3, 19, 17, 21, 1] Best cost: 6625.724 | Path: [1, 19, 3, 17, 14, 1, 11, 7, 4, 10, 1, 5, 16, 2, 12, 0, 1, 20, 6, 15, 23, 21, 1, 18, 1] Generation: #3 Best cost: 6360.990 | Path: [1, 20, 3, 19, 17, 1, 7, 11, 4, 10, 1, 0, 12, 2, 16, 5, 1, 15, 6, 14, 23, 21, 1, 18, 1] OPTIMIZING each tour... Current: [[1, 20, 3, 19, 17, 1], [1, 7, 11, 4, 10, 1], [1, 0, 12, 2, 16, 5, 1], [1, 15, 6, 14, 23, 21, 1], [1, 18, 1]] [1] Cost: 1347.633 to 1329.758 | Optimized: [1, 3, 19, 17, 20, 1] [3] Cost: 1372.044 to 1370.534 | Optimized: [1, 12, 2, 16, 5, 0, 1] ACO RESULTS [1/285 vol./1329.758 km] Berlin Hbf -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Würzburg Hbf --> Berlin Hbf [2/280 vol./1082.275 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Hannover Hbf -> Bremen Hbf --> Berlin Hbf [3/300 vol./1370.534 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Aachen Hbf -> Kassel-Wilhelmshöhe --> Berlin Hbf [4/245 vol./1857.095 km] Berlin Hbf -> Ulm Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Saarbrücken Hbf --> Berlin Hbf [5/ 75 vol./ 701.943 km] Berlin Hbf -> Kiel Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 6341.605 km.