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: 20 customers
- Kassel-Wilhelmshöhe (25 vol.)
- Düsseldorf Hbf (70 vol.)
- Frankfurt Hbf (45 vol.)
- Hannover Hbf (100 vol.)
- Aachen Hbf (25 vol.)
- Stuttgart Hbf (75 vol.)
- Dresden Hbf (65 vol.)
- München Hbf (40 vol.)
- Bremen Hbf (70 vol.)
- Leipzig Hbf (70 vol.)
- Dortmund Hbf (30 vol.)
- Karlsruhe Hbf (65 vol.)
- Köln Hbf (40 vol.)
- Mannheim Hbf (55 vol.)
- Kiel Hbf (55 vol.)
- Mainz Hbf (50 vol.)
- Würzburg Hbf (80 vol.)
- Saarbrücken Hbf (90 vol.)
- Osnabrück Hbf (70 vol.)
- Freiburg Hbf (90 vol.)
Tour 1
COST: 1446.647 km
LOAD: 290 vol.
- Frankfurt Hbf | 45 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 55 vol.
- Karlsruhe Hbf | 65 vol.
- Stuttgart Hbf | 75 vol.
Tour 2
COST: 1334.831 km
LOAD: 290 vol.
- Leipzig Hbf | 70 vol.
- Dresden Hbf | 65 vol.
- Kassel-Wilhelmshöhe | 25 vol.
- Dortmund Hbf | 30 vol.
- Hannover Hbf | 100 vol.
Tour 3
COST: 1971.583 km
LOAD: 300 vol.
- München Hbf | 40 vol.
- Freiburg Hbf | 90 vol.
- Saarbrücken Hbf | 90 vol.
- Würzburg Hbf | 80 vol.
Tour 4
COST: 1435.1 km
LOAD: 275 vol.
- Bremen Hbf | 70 vol.
- Osnabrück Hbf | 70 vol.
- Düsseldorf Hbf | 70 vol.
- Aachen Hbf | 25 vol.
- Köln Hbf | 40 vol.
Tour 5
COST: 701.943 km
LOAD: 55 vol.
- Kiel Hbf | 55 vol.
LOAD: 290 vol.
- Frankfurt Hbf | 45 vol.
- Mainz Hbf | 50 vol.
- Mannheim Hbf | 55 vol.
- Karlsruhe Hbf | 65 vol.
- Stuttgart Hbf | 75 vol.
LOAD: 290 vol.
- Leipzig Hbf | 70 vol.
- Dresden Hbf | 65 vol.
- Kassel-Wilhelmshöhe | 25 vol.
- Dortmund Hbf | 30 vol.
- Hannover Hbf | 100 vol.
LOAD: 300 vol.
- München Hbf | 40 vol.
- Freiburg Hbf | 90 vol.
- Saarbrücken Hbf | 90 vol.
- Würzburg Hbf | 80 vol.
LOAD: 275 vol.
- Bremen Hbf | 70 vol.
- Osnabrück Hbf | 70 vol.
- Düsseldorf Hbf | 70 vol.
- Aachen Hbf | 25 vol.
- Köln Hbf | 40 vol.
LOAD: 55 vol.
- Kiel Hbf | 55 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: 1210 vol. | Vehicle capacity: 300 vol. Loads: [25, 0, 70, 45, 100, 25, 75, 65, 0, 40, 70, 70, 30, 0, 65, 0, 40, 55, 55, 50, 80, 90, 70, 90] ITERATION Generation: #1 Best cost: 7701.057 | Path: [1, 0, 12, 2, 16, 5, 19, 3, 1, 11, 7, 20, 14, 1, 4, 10, 22, 18, 1, 9, 6, 17, 21, 1, 23, 1] Best cost: 7272.452 | Path: [1, 12, 2, 16, 5, 3, 19, 0, 1, 11, 7, 20, 6, 1, 4, 10, 22, 18, 1, 21, 17, 14, 23, 1, 9, 1] Best cost: 7134.051 | Path: [1, 19, 3, 17, 14, 6, 1, 7, 11, 4, 0, 12, 1, 20, 9, 23, 21, 1, 10, 22, 2, 16, 5, 1, 18, 1] Best cost: 7095.130 | Path: [1, 7, 11, 0, 12, 2, 16, 1, 4, 22, 10, 18, 1, 20, 3, 19, 17, 14, 1, 6, 23, 21, 5, 1, 9, 1] Best cost: 6997.559 | Path: [1, 3, 19, 17, 14, 6, 1, 7, 11, 4, 0, 12, 1, 20, 21, 23, 9, 1, 10, 22, 2, 16, 5, 1, 18, 1] OPTIMIZING each tour... Current: [[1, 3, 19, 17, 14, 6, 1], [1, 7, 11, 4, 0, 12, 1], [1, 20, 21, 23, 9, 1], [1, 10, 22, 2, 16, 5, 1], [1, 18, 1]] [2] Cost: 1408.294 to 1334.831 | Optimized: [1, 11, 7, 0, 12, 4, 1] [3] Cost: 1985.556 to 1971.583 | Optimized: [1, 9, 23, 21, 20, 1] [4] Cost: 1455.119 to 1435.100 | Optimized: [1, 10, 22, 2, 5, 16, 1] ACO RESULTS [1/290 vol./1446.647 km] Berlin Hbf -> Frankfurt Hbf -> Mainz Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Stuttgart Hbf --> Berlin Hbf [2/290 vol./1334.831 km] Berlin Hbf -> Leipzig Hbf -> Dresden Hbf -> Kassel-Wilhelmshöhe -> Dortmund Hbf -> Hannover Hbf --> Berlin Hbf [3/300 vol./1971.583 km] Berlin Hbf -> München Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Würzburg Hbf --> Berlin Hbf [4/275 vol./1435.100 km] Berlin Hbf -> Bremen Hbf -> Osnabrück Hbf -> Düsseldorf Hbf -> Aachen Hbf -> Köln Hbf --> Berlin Hbf [5/ 55 vol./ 701.943 km] Berlin Hbf -> Kiel Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 6890.104 km.