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: 18 customers
- Berlin Hbf (85 vol.)
- Düsseldorf Hbf (95 vol.)
- Frankfurt Hbf (30 vol.)
- Hannover Hbf (25 vol.)
- Stuttgart Hbf (45 vol.)
- Dresden Hbf (40 vol.)
- Hamburg Hbf (90 vol.)
- München Hbf (25 vol.)
- Leipzig Hbf (55 vol.)
- Dortmund Hbf (85 vol.)
- Nürnberg Hbf (35 vol.)
- Ulm Hbf (45 vol.)
- Köln Hbf (50 vol.)
- Kiel Hbf (40 vol.)
- Mainz Hbf (90 vol.)
- Saarbrücken Hbf (45 vol.)
- Osnabrück Hbf (80 vol.)
- Freiburg Hbf (85 vol.)
Tour 1
COST: 1519.858 km
LOAD: 400 vol.
- Nürnberg Hbf | 35 vol.
- München Hbf | 25 vol.
- Ulm Hbf | 45 vol.
- Stuttgart Hbf | 45 vol.
- Freiburg Hbf | 85 vol.
- Saarbrücken Hbf | 45 vol.
- Mainz Hbf | 90 vol.
- Frankfurt Hbf | 30 vol.
Tour 2
COST: 1714.928 km
LOAD: 385 vol.
- Köln Hbf | 50 vol.
- Hannover Hbf | 25 vol.
- Hamburg Hbf | 90 vol.
- Kiel Hbf | 40 vol.
- Berlin Hbf | 85 vol.
- Dresden Hbf | 40 vol.
- Leipzig Hbf | 55 vol.
Tour 3
COST: 584.215 km
LOAD: 260 vol.
- Dortmund Hbf | 85 vol.
- Düsseldorf Hbf | 95 vol.
- Osnabrück Hbf | 80 vol.
LOAD: 400 vol.
- Nürnberg Hbf | 35 vol.
- München Hbf | 25 vol.
- Ulm Hbf | 45 vol.
- Stuttgart Hbf | 45 vol.
- Freiburg Hbf | 85 vol.
- Saarbrücken Hbf | 45 vol.
- Mainz Hbf | 90 vol.
- Frankfurt Hbf | 30 vol.
LOAD: 385 vol.
- Köln Hbf | 50 vol.
- Hannover Hbf | 25 vol.
- Hamburg Hbf | 90 vol.
- Kiel Hbf | 40 vol.
- Berlin Hbf | 85 vol.
- Dresden Hbf | 40 vol.
- Leipzig Hbf | 55 vol.
LOAD: 260 vol.
- Dortmund Hbf | 85 vol.
- Düsseldorf Hbf | 95 vol.
- Osnabrück Hbf | 80 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: 1045 vol. | Vehicle capacity: 400 vol. Loads: [0, 85, 95, 30, 25, 0, 45, 40, 90, 25, 0, 55, 85, 35, 0, 45, 50, 0, 40, 90, 0, 45, 80, 85] ITERATION Generation: #1 Best cost: 4964.117 | Path: [0, 1, 11, 7, 13, 9, 15, 6, 3, 4, 0, 22, 2, 16, 12, 19, 0, 21, 23, 8, 18, 0] Best cost: 4910.535 | Path: [0, 2, 16, 12, 22, 4, 18, 9, 0, 19, 3, 21, 23, 6, 15, 13, 0, 11, 7, 1, 8, 0] Best cost: 4158.884 | Path: [0, 3, 19, 21, 23, 6, 15, 9, 13, 0, 22, 4, 8, 18, 1, 11, 0, 12, 16, 2, 7, 0] Best cost: 4033.584 | Path: [0, 2, 16, 12, 22, 4, 11, 0, 3, 19, 21, 23, 6, 15, 9, 13, 0, 8, 18, 1, 7, 0] Best cost: 4008.814 | Path: [0, 13, 9, 15, 6, 23, 21, 19, 3, 0, 4, 8, 18, 1, 11, 7, 16, 0, 12, 2, 22, 0] Best cost: 3932.747 | Path: [0, 11, 7, 1, 8, 18, 4, 16, 0, 19, 3, 21, 23, 6, 15, 9, 13, 0, 12, 2, 22, 0] Generation: #2 Best cost: 3884.063 | Path: [0, 11, 7, 1, 8, 18, 4, 16, 0, 3, 19, 21, 23, 6, 15, 9, 13, 0, 22, 12, 2, 0] Generation: #3 Best cost: 3872.735 | Path: [0, 11, 7, 1, 8, 18, 4, 16, 0, 3, 19, 21, 23, 6, 15, 9, 13, 0, 12, 2, 22, 0] Best cost: 3872.735 | Path: [0, 3, 19, 21, 23, 6, 15, 9, 13, 0, 11, 7, 1, 8, 18, 4, 16, 0, 12, 2, 22, 0] OPTIMIZING each tour... Current: [[0, 3, 19, 21, 23, 6, 15, 9, 13, 0], [0, 11, 7, 1, 8, 18, 4, 16, 0], [0, 12, 2, 22, 0]] [1] Cost: 1536.195 to 1519.858 | Optimized: [0, 13, 9, 15, 6, 23, 21, 19, 3, 0] [2] Cost: 1752.325 to 1714.928 | Optimized: [0, 16, 4, 8, 18, 1, 7, 11, 0] ACO RESULTS [1/400 vol./1519.858 km] Kassel-Wilhelmshöhe -> Nürnberg Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Mainz Hbf -> Frankfurt Hbf --> Kassel-Wilhelmshöhe [2/385 vol./1714.928 km] Kassel-Wilhelmshöhe -> Köln Hbf -> Hannover Hbf -> Hamburg Hbf -> Kiel Hbf -> Berlin Hbf -> Dresden Hbf -> Leipzig Hbf --> Kassel-Wilhelmshöhe [3/260 vol./ 584.215 km] Kassel-Wilhelmshöhe -> Dortmund Hbf -> Düsseldorf Hbf -> Osnabrück Hbf --> Kassel-Wilhelmshöhe OPTIMIZATION RESULT: 3 tours | 3819.001 km.