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: 22 customers
- Kassel-Wilhelmshöhe (50 vol.)
- Düsseldorf Hbf (60 vol.)
- Frankfurt Hbf (55 vol.)
- Hannover Hbf (20 vol.)
- Aachen Hbf (45 vol.)
- Stuttgart Hbf (75 vol.)
- Dresden Hbf (30 vol.)
- Hamburg Hbf (85 vol.)
- München Hbf (80 vol.)
- Bremen Hbf (40 vol.)
- Leipzig Hbf (75 vol.)
- Dortmund Hbf (20 vol.)
- Karlsruhe Hbf (40 vol.)
- Ulm Hbf (25 vol.)
- Köln Hbf (50 vol.)
- Mannheim Hbf (95 vol.)
- Kiel Hbf (85 vol.)
- Mainz Hbf (50 vol.)
- Würzburg Hbf (30 vol.)
- Saarbrücken Hbf (80 vol.)
- Osnabrück Hbf (95 vol.)
- Freiburg Hbf (65 vol.)
Tour 1
COST: 1287.425 km
LOAD: 300 vol.
- Dresden Hbf | 30 vol.
- Leipzig Hbf | 75 vol.
- Kassel-Wilhelmshöhe | 50 vol.
- Hannover Hbf | 20 vol.
- Bremen Hbf | 40 vol.
- Hamburg Hbf | 85 vol.
Tour 2
COST: 1568.925 km
LOAD: 295 vol.
- Ulm Hbf | 25 vol.
- Karlsruhe Hbf | 40 vol.
- Mannheim Hbf | 95 vol.
- Mainz Hbf | 50 vol.
- Frankfurt Hbf | 55 vol.
- Würzburg Hbf | 30 vol.
Tour 3
COST: 1341.989 km
LOAD: 270 vol.
- Köln Hbf | 50 vol.
- Aachen Hbf | 45 vol.
- Düsseldorf Hbf | 60 vol.
- Dortmund Hbf | 20 vol.
- Osnabrück Hbf | 95 vol.
Tour 4
COST: 1939.101 km
LOAD: 300 vol.
- München Hbf | 80 vol.
- Stuttgart Hbf | 75 vol.
- Freiburg Hbf | 65 vol.
- Saarbrücken Hbf | 80 vol.
Tour 5
COST: 701.943 km
LOAD: 85 vol.
- Kiel Hbf | 85 vol.
LOAD: 300 vol.
- Dresden Hbf | 30 vol.
- Leipzig Hbf | 75 vol.
- Kassel-Wilhelmshöhe | 50 vol.
- Hannover Hbf | 20 vol.
- Bremen Hbf | 40 vol.
- Hamburg Hbf | 85 vol.
LOAD: 295 vol.
- Ulm Hbf | 25 vol.
- Karlsruhe Hbf | 40 vol.
- Mannheim Hbf | 95 vol.
- Mainz Hbf | 50 vol.
- Frankfurt Hbf | 55 vol.
- Würzburg Hbf | 30 vol.
LOAD: 270 vol.
- Köln Hbf | 50 vol.
- Aachen Hbf | 45 vol.
- Düsseldorf Hbf | 60 vol.
- Dortmund Hbf | 20 vol.
- Osnabrück Hbf | 95 vol.
LOAD: 300 vol.
- München Hbf | 80 vol.
- Stuttgart Hbf | 75 vol.
- Freiburg Hbf | 65 vol.
- Saarbrücken Hbf | 80 vol.
LOAD: 85 vol.
- Kiel 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: 1250 vol. | Vehicle capacity: 300 vol. Loads: [50, 0, 60, 55, 20, 45, 75, 30, 85, 80, 40, 75, 20, 0, 40, 25, 50, 95, 85, 50, 30, 80, 95, 65] ITERATION Generation: #1 Best cost: 8557.632 | Path: [1, 0, 4, 22, 10, 8, 1, 11, 7, 3, 19, 14, 15, 12, 1, 18, 2, 16, 5, 20, 1, 6, 17, 21, 1, 9, 23, 1] Best cost: 8276.937 | Path: [1, 2, 16, 5, 12, 22, 4, 1, 7, 11, 0, 20, 17, 1, 8, 18, 10, 3, 15, 1, 19, 21, 14, 6, 1, 9, 23, 1] Best cost: 8156.175 | Path: [1, 3, 19, 17, 14, 20, 15, 1, 11, 7, 4, 10, 8, 0, 1, 18, 22, 12, 2, 1, 16, 5, 21, 23, 1, 9, 6, 1] Best cost: 7999.850 | Path: [1, 4, 10, 8, 18, 12, 16, 1, 7, 11, 0, 22, 5, 1, 20, 3, 19, 17, 14, 15, 1, 2, 21, 23, 6, 1, 9, 1] Best cost: 7895.739 | Path: [1, 6, 14, 17, 3, 20, 1, 7, 11, 4, 10, 22, 12, 1, 8, 18, 0, 2, 1, 5, 16, 19, 21, 23, 1, 15, 9, 1] Best cost: 7888.491 | Path: [1, 8, 18, 10, 4, 12, 16, 1, 11, 7, 9, 15, 6, 1, 20, 3, 19, 17, 14, 1, 0, 22, 2, 5, 1, 21, 23, 1] Best cost: 7746.162 | Path: [1, 12, 2, 16, 5, 19, 3, 4, 1, 7, 11, 0, 22, 10, 1, 8, 18, 14, 6, 1, 20, 17, 21, 23, 15, 1, 9, 1] Best cost: 7681.463 | Path: [1, 9, 15, 6, 14, 19, 20, 1, 11, 7, 3, 17, 12, 4, 1, 8, 18, 10, 0, 1, 22, 2, 16, 5, 1, 21, 23, 1] Best cost: 7659.845 | Path: [1, 5, 16, 2, 12, 22, 4, 1, 11, 7, 3, 19, 21, 1, 8, 18, 10, 0, 20, 1, 23, 14, 17, 6, 15, 1, 9, 1] Best cost: 7627.142 | Path: [1, 15, 6, 14, 17, 3, 1, 11, 7, 0, 4, 10, 8, 1, 20, 19, 21, 23, 16, 12, 1, 18, 22, 2, 5, 1, 9, 1] Best cost: 7499.707 | Path: [1, 22, 12, 2, 16, 5, 20, 1, 11, 7, 15, 6, 14, 19, 1, 8, 18, 10, 4, 0, 1, 3, 17, 21, 23, 1, 9, 1] Generation: #2 Best cost: 7493.645 | Path: [1, 5, 16, 2, 12, 22, 4, 1, 11, 7, 20, 6, 14, 15, 1, 8, 18, 10, 0, 1, 9, 23, 21, 19, 1, 3, 17, 1] Generation: #4 Best cost: 7466.872 | Path: [1, 20, 3, 19, 17, 14, 15, 1, 7, 11, 0, 12, 2, 16, 1, 8, 18, 10, 4, 5, 1, 9, 6, 23, 21, 1, 22, 1] Best cost: 7451.566 | Path: [1, 9, 15, 6, 14, 23, 1, 11, 7, 20, 3, 19, 16, 1, 8, 18, 10, 4, 0, 12, 1, 17, 21, 5, 2, 1, 22, 1] Generation: #5 Best cost: 7210.107 | Path: [1, 20, 3, 19, 17, 14, 15, 1, 11, 7, 4, 10, 8, 0, 1, 9, 6, 23, 21, 1, 22, 2, 16, 5, 12, 1, 18, 1] Generation: #10 Best cost: 7208.959 | Path: [1, 11, 7, 4, 10, 8, 0, 1, 20, 3, 19, 17, 14, 15, 1, 22, 12, 2, 16, 5, 1, 9, 6, 23, 21, 1, 18, 1] OPTIMIZING each tour... Current: [[1, 11, 7, 4, 10, 8, 0, 1], [1, 20, 3, 19, 17, 14, 15, 1], [1, 22, 12, 2, 16, 5, 1], [1, 9, 6, 23, 21, 1], [1, 18, 1]] [1] Cost: 1632.381 to 1287.425 | Optimized: [1, 7, 11, 0, 4, 10, 8, 1] [2] Cost: 1570.033 to 1568.925 | Optimized: [1, 15, 14, 17, 19, 3, 20, 1] [3] Cost: 1365.501 to 1341.989 | Optimized: [1, 16, 5, 2, 12, 22, 1] ACO RESULTS [1/300 vol./1287.425 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Kassel-Wilhelmshöhe -> Hannover Hbf -> Bremen Hbf -> Hamburg Hbf --> Berlin Hbf [2/295 vol./1568.925 km] Berlin Hbf -> Ulm Hbf -> Karlsruhe Hbf -> Mannheim Hbf -> Mainz Hbf -> Frankfurt Hbf -> Würzburg Hbf --> Berlin Hbf [3/270 vol./1341.989 km] Berlin Hbf -> Köln Hbf -> Aachen Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf --> Berlin Hbf [4/300 vol./1939.101 km] Berlin Hbf -> München Hbf -> Stuttgart Hbf -> Freiburg Hbf -> Saarbrücken Hbf --> Berlin Hbf [5/ 85 vol./ 701.943 km] Berlin Hbf -> Kiel Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 6839.383 km.