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: 15 customers
- Düsseldorf Hbf (50 vol.)
- Frankfurt Hbf (35 vol.)
- Hannover Hbf (90 vol.)
- Stuttgart Hbf (90 vol.)
- Dresden Hbf (55 vol.)
- München Hbf (70 vol.)
- Bremen Hbf (75 vol.)
- Leipzig Hbf (55 vol.)
- Dortmund Hbf (30 vol.)
- Ulm Hbf (75 vol.)
- Köln Hbf (65 vol.)
- Kiel Hbf (30 vol.)
- Mainz Hbf (65 vol.)
- Saarbrücken Hbf (90 vol.)
- Osnabrück Hbf (30 vol.)
Tour 1
COST: 1596.773 km
LOAD: 300 vol.
- München Hbf | 70 vol.
- Ulm Hbf | 75 vol.
- Stuttgart Hbf | 90 vol.
- Mainz Hbf | 65 vol.
Tour 2
COST: 1082.275 km
LOAD: 275 vol.
- Dresden Hbf | 55 vol.
- Leipzig Hbf | 55 vol.
- Hannover Hbf | 90 vol.
- Bremen Hbf | 75 vol.
Tour 3
COST: 1635.459 km
LOAD: 300 vol.
- Frankfurt Hbf | 35 vol.
- Saarbrücken Hbf | 90 vol.
- Köln Hbf | 65 vol.
- Düsseldorf Hbf | 50 vol.
- Dortmund Hbf | 30 vol.
- Osnabrück Hbf | 30 vol.
Tour 4
COST: 701.943 km
LOAD: 30 vol.
- Kiel Hbf | 30 vol.
LOAD: 300 vol.
- München Hbf | 70 vol.
- Ulm Hbf | 75 vol.
- Stuttgart Hbf | 90 vol.
- Mainz Hbf | 65 vol.
LOAD: 275 vol.
- Dresden Hbf | 55 vol.
- Leipzig Hbf | 55 vol.
- Hannover Hbf | 90 vol.
- Bremen Hbf | 75 vol.
LOAD: 300 vol.
- Frankfurt Hbf | 35 vol.
- Saarbrücken Hbf | 90 vol.
- Köln Hbf | 65 vol.
- Düsseldorf Hbf | 50 vol.
- Dortmund Hbf | 30 vol.
- Osnabrück Hbf | 30 vol.
LOAD: 30 vol.
- Kiel Hbf | 30 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: 905 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 50, 35, 90, 0, 90, 55, 0, 70, 75, 55, 30, 0, 0, 75, 65, 0, 30, 65, 0, 90, 30, 0] ITERATION Generation: #1 Best cost: 5961.385 | Path: [1, 2, 16, 12, 22, 10, 18, 1, 11, 7, 4, 3, 19, 1, 15, 6, 21, 1, 9, 1] Best cost: 5769.405 | Path: [1, 12, 2, 16, 19, 3, 11, 1, 7, 4, 10, 22, 18, 1, 9, 15, 6, 1, 21, 1] Best cost: 5659.916 | Path: [1, 7, 11, 4, 10, 1, 18, 22, 12, 2, 16, 21, 1, 3, 19, 6, 15, 1, 9, 1] Best cost: 5304.124 | Path: [1, 9, 15, 6, 3, 22, 1, 11, 7, 4, 10, 1, 12, 2, 16, 19, 21, 1, 18, 1] Best cost: 5239.855 | Path: [1, 9, 15, 6, 19, 1, 11, 7, 10, 4, 1, 22, 12, 2, 16, 3, 21, 1, 18, 1] Best cost: 5202.880 | Path: [1, 6, 15, 9, 11, 1, 7, 3, 19, 21, 2, 1, 4, 10, 22, 12, 16, 1, 18, 1] Generation: #2 Best cost: 5115.646 | Path: [1, 9, 15, 6, 19, 1, 11, 7, 4, 10, 1, 3, 21, 16, 2, 12, 22, 1, 18, 1] OPTIMIZING each tour... Current: [[1, 9, 15, 6, 19, 1], [1, 11, 7, 4, 10, 1], [1, 3, 21, 16, 2, 12, 22, 1], [1, 18, 1]] [2] Cost: 1181.471 to 1082.275 | Optimized: [1, 7, 11, 4, 10, 1] ACO RESULTS [1/300 vol./1596.773 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf -> Mainz Hbf --> Berlin Hbf [2/275 vol./1082.275 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Hannover Hbf -> Bremen Hbf --> Berlin Hbf [3/300 vol./1635.459 km] Berlin Hbf -> Frankfurt Hbf -> Saarbrücken Hbf -> Köln Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf --> Berlin Hbf [4/ 30 vol./ 701.943 km] Berlin Hbf -> Kiel Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5016.450 km.