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: 14 customers
- Düsseldorf Hbf (60 vol.)
- Hannover Hbf (95 vol.)
- Aachen Hbf (40 vol.)
- Dresden Hbf (100 vol.)
- München Hbf (80 vol.)
- Bremen Hbf (45 vol.)
- Leipzig Hbf (80 vol.)
- Dortmund Hbf (95 vol.)
- Ulm Hbf (100 vol.)
- Köln Hbf (25 vol.)
- Mannheim Hbf (90 vol.)
- Kiel Hbf (80 vol.)
- Mainz Hbf (95 vol.)
- Würzburg Hbf (65 vol.)
Tour 1
COST: 1475.256 km
LOAD: 270 vol.
- Mannheim Hbf | 90 vol.
- Mainz Hbf | 95 vol.
- Köln Hbf | 25 vol.
- Düsseldorf Hbf | 60 vol.
Tour 2
COST: 858.167 km
LOAD: 275 vol.
- Dresden Hbf | 100 vol.
- Leipzig Hbf | 80 vol.
- Hannover Hbf | 95 vol.
Tour 3
COST: 1578.944 km
LOAD: 260 vol.
- Dortmund Hbf | 95 vol.
- Aachen Hbf | 40 vol.
- Bremen Hbf | 45 vol.
- Kiel Hbf | 80 vol.
Tour 4
COST: 1403.95 km
LOAD: 245 vol.
- München Hbf | 80 vol.
- Ulm Hbf | 100 vol.
- Würzburg Hbf | 65 vol.
LOAD: 270 vol.
- Mannheim Hbf | 90 vol.
- Mainz Hbf | 95 vol.
- Köln Hbf | 25 vol.
- Düsseldorf Hbf | 60 vol.
LOAD: 275 vol.
- Dresden Hbf | 100 vol.
- Leipzig Hbf | 80 vol.
- Hannover Hbf | 95 vol.
LOAD: 260 vol.
- Dortmund Hbf | 95 vol.
- Aachen Hbf | 40 vol.
- Bremen Hbf | 45 vol.
- Kiel Hbf | 80 vol.
LOAD: 245 vol.
- München Hbf | 80 vol.
- Ulm Hbf | 100 vol.
- Würzburg Hbf | 65 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: 1050 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 60, 0, 95, 40, 0, 100, 0, 80, 45, 80, 95, 0, 0, 100, 25, 90, 80, 95, 65, 0, 0, 0] ITERATION Generation: #1 Best cost: 5654.640 | Path: [1, 2, 16, 5, 12, 10, 1, 11, 7, 4, 1, 18, 20, 19, 1, 9, 15, 17, 1] Best cost: 5422.140 | Path: [1, 5, 2, 16, 12, 10, 1, 7, 11, 4, 1, 18, 19, 17, 1, 20, 15, 9, 1] Best cost: 5349.034 | Path: [1, 18, 10, 4, 11, 1, 7, 9, 15, 1, 12, 2, 16, 5, 20, 1, 19, 17, 1] Best cost: 5318.666 | Path: [1, 17, 19, 16, 2, 1, 7, 11, 4, 1, 18, 10, 12, 5, 1, 9, 15, 20, 1] OPTIMIZING each tour... Current: [[1, 17, 19, 16, 2, 1], [1, 7, 11, 4, 1], [1, 18, 10, 12, 5, 1], [1, 9, 15, 20, 1]] [3] Cost: 1581.293 to 1578.944 | Optimized: [1, 12, 5, 10, 18, 1] ACO RESULTS [1/270 vol./1475.256 km] Berlin Hbf -> Mannheim Hbf -> Mainz Hbf -> Köln Hbf -> Düsseldorf Hbf --> Berlin Hbf [2/275 vol./ 858.167 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Hannover Hbf --> Berlin Hbf [3/260 vol./1578.944 km] Berlin Hbf -> Dortmund Hbf -> Aachen Hbf -> Bremen Hbf -> Kiel Hbf --> Berlin Hbf [4/245 vol./1403.950 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Würzburg Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5316.317 km.