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 (65 vol.)
- Düsseldorf Hbf (85 vol.)
- Frankfurt Hbf (25 vol.)
- Hannover Hbf (70 vol.)
- Aachen Hbf (30 vol.)
- Stuttgart Hbf (50 vol.)
- Dresden Hbf (40 vol.)
- Hamburg Hbf (85 vol.)
- Bremen Hbf (95 vol.)
- Leipzig Hbf (85 vol.)
- Dortmund Hbf (20 vol.)
- Nürnberg Hbf (60 vol.)
- Karlsruhe Hbf (60 vol.)
- Köln Hbf (50 vol.)
- Kiel Hbf (75 vol.)
- Würzburg Hbf (85 vol.)
- Saarbrücken Hbf (95 vol.)
- Osnabrück Hbf (70 vol.)
- Freiburg Hbf (30 vol.)
Tour 1
COST: 1532.326 km
LOAD: 295 vol.
- Dortmund Hbf | 20 vol.
- Düsseldorf Hbf | 85 vol.
- Köln Hbf | 50 vol.
- Aachen Hbf | 30 vol.
- Frankfurt Hbf | 25 vol.
- Würzburg Hbf | 85 vol.
Tour 2
COST: 1082.275 km
LOAD: 290 vol.
- Dresden Hbf | 40 vol.
- Leipzig Hbf | 85 vol.
- Hannover Hbf | 70 vol.
- Bremen Hbf | 95 vol.
Tour 3
COST: 1244.584 km
LOAD: 295 vol.
- Kassel-Wilhelmshöhe | 65 vol.
- Osnabrück Hbf | 70 vol.
- Hamburg Hbf | 85 vol.
- Kiel Hbf | 75 vol.
Tour 4
COST: 1787.518 km
LOAD: 295 vol.
- Nürnberg Hbf | 60 vol.
- Stuttgart Hbf | 50 vol.
- Karlsruhe Hbf | 60 vol.
- Freiburg Hbf | 30 vol.
- Saarbrücken Hbf | 95 vol.
LOAD: 295 vol.
- Dortmund Hbf | 20 vol.
- Düsseldorf Hbf | 85 vol.
- Köln Hbf | 50 vol.
- Aachen Hbf | 30 vol.
- Frankfurt Hbf | 25 vol.
- Würzburg Hbf | 85 vol.
LOAD: 290 vol.
- Dresden Hbf | 40 vol.
- Leipzig Hbf | 85 vol.
- Hannover Hbf | 70 vol.
- Bremen Hbf | 95 vol.
LOAD: 295 vol.
- Kassel-Wilhelmshöhe | 65 vol.
- Osnabrück Hbf | 70 vol.
- Hamburg Hbf | 85 vol.
- Kiel Hbf | 75 vol.
LOAD: 295 vol.
- Nürnberg Hbf | 60 vol.
- Stuttgart Hbf | 50 vol.
- Karlsruhe Hbf | 60 vol.
- Freiburg Hbf | 30 vol.
- Saarbrücken Hbf | 95 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: 1175 vol. | Vehicle capacity: 300 vol. Loads: [65, 0, 85, 25, 70, 30, 50, 40, 85, 0, 95, 85, 20, 60, 60, 0, 50, 0, 75, 0, 85, 95, 70, 30] ITERATION Generation: #1 Best cost: 7594.825 | Path: [1, 0, 22, 12, 2, 16, 1, 7, 11, 13, 20, 3, 1, 18, 8, 10, 5, 1, 4, 6, 14, 23, 1, 21, 1] Best cost: 7450.883 | Path: [1, 2, 16, 5, 12, 22, 3, 1, 7, 11, 13, 20, 23, 1, 4, 10, 8, 6, 1, 18, 0, 14, 21, 1] Best cost: 7390.045 | Path: [1, 3, 20, 13, 14, 6, 12, 1, 7, 11, 0, 22, 5, 1, 8, 18, 10, 23, 1, 4, 16, 2, 21, 1] Best cost: 6266.158 | Path: [1, 4, 10, 22, 12, 5, 1, 11, 7, 13, 20, 3, 1, 8, 18, 2, 16, 1, 0, 14, 6, 23, 21, 1] Best cost: 6232.246 | Path: [1, 7, 11, 4, 10, 1, 8, 18, 22, 12, 16, 1, 0, 20, 13, 6, 3, 1, 2, 5, 21, 14, 23, 1] Best cost: 6209.684 | Path: [1, 13, 20, 3, 14, 6, 12, 1, 11, 7, 4, 10, 1, 8, 18, 22, 0, 1, 16, 2, 5, 21, 23, 1] Best cost: 6158.600 | Path: [1, 16, 2, 12, 22, 4, 1, 11, 7, 13, 20, 3, 1, 18, 8, 10, 5, 1, 0, 14, 6, 23, 21, 1] Best cost: 6124.677 | Path: [1, 4, 10, 22, 0, 1, 11, 7, 13, 20, 3, 1, 8, 18, 16, 2, 1, 12, 5, 21, 14, 6, 23, 1] Best cost: 5931.905 | Path: [1, 20, 3, 16, 2, 12, 5, 1, 7, 11, 4, 10, 1, 18, 8, 0, 22, 1, 13, 6, 14, 23, 21, 1] Best cost: 5865.957 | Path: [1, 12, 2, 16, 5, 3, 20, 1, 11, 7, 4, 10, 1, 8, 18, 22, 0, 1, 13, 6, 14, 21, 23, 1] Generation: #3 Best cost: 5771.774 | Path: [1, 12, 2, 16, 5, 3, 20, 1, 11, 7, 4, 10, 1, 8, 18, 22, 0, 1, 13, 6, 14, 23, 21, 1] Generation: #5 Best cost: 5672.578 | Path: [1, 12, 2, 16, 5, 3, 20, 1, 7, 11, 4, 10, 1, 8, 18, 22, 0, 1, 13, 6, 14, 23, 21, 1] OPTIMIZING each tour... Current: [[1, 12, 2, 16, 5, 3, 20, 1], [1, 7, 11, 4, 10, 1], [1, 8, 18, 22, 0, 1], [1, 13, 6, 14, 23, 21, 1]] [3] Cost: 1270.459 to 1244.584 | Optimized: [1, 0, 22, 8, 18, 1] ACO RESULTS [1/295 vol./1532.326 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Aachen Hbf -> Frankfurt Hbf -> Würzburg Hbf --> Berlin Hbf [2/290 vol./1082.275 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Hannover Hbf -> Bremen Hbf --> Berlin Hbf [3/295 vol./1244.584 km] Berlin Hbf -> Kassel-Wilhelmshöhe -> Osnabrück Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [4/295 vol./1787.518 km] Berlin Hbf -> Nürnberg Hbf -> Stuttgart Hbf -> Karlsruhe Hbf -> Freiburg Hbf -> Saarbrücken Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5646.703 km.