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 (65 vol.)
- Düsseldorf Hbf (25 vol.)
- Frankfurt Hbf (45 vol.)
- Hannover Hbf (35 vol.)
- Aachen Hbf (90 vol.)
- Stuttgart Hbf (80 vol.)
- Dresden Hbf (75 vol.)
- Hamburg Hbf (85 vol.)
- Bremen Hbf (95 vol.)
- Leipzig Hbf (65 vol.)
- Nürnberg Hbf (20 vol.)
- Karlsruhe Hbf (70 vol.)
- Ulm Hbf (45 vol.)
- Köln Hbf (90 vol.)
- Mannheim Hbf (30 vol.)
- Kiel Hbf (75 vol.)
- Mainz Hbf (50 vol.)
- Würzburg Hbf (95 vol.)
- Osnabrück Hbf (40 vol.)
- Freiburg Hbf (20 vol.)
Tour 1
COST: 1497.44 km
LOAD: 300 vol.
- Düsseldorf Hbf | 25 vol.
- Köln Hbf | 90 vol.
- Aachen Hbf | 90 vol.
- Mainz Hbf | 50 vol.
- Frankfurt Hbf | 45 vol.
Tour 2
COST: 1524.658 km
LOAD: 300 vol.
- Ulm Hbf | 45 vol.
- Würzburg Hbf | 95 vol.
- Nürnberg Hbf | 20 vol.
- Leipzig Hbf | 65 vol.
- Dresden Hbf | 75 vol.
Tour 3
COST: 1107.833 km
LOAD: 295 vol.
- Osnabrück Hbf | 40 vol.
- Bremen Hbf | 95 vol.
- Hamburg Hbf | 85 vol.
- Kiel Hbf | 75 vol.
Tour 4
COST: 1891.723 km
LOAD: 300 vol.
- Freiburg Hbf | 20 vol.
- Karlsruhe Hbf | 70 vol.
- Stuttgart Hbf | 80 vol.
- Mannheim Hbf | 30 vol.
- Kassel-Wilhelmshöhe | 65 vol.
- Hannover Hbf | 35 vol.
LOAD: 300 vol.
- Düsseldorf Hbf | 25 vol.
- Köln Hbf | 90 vol.
- Aachen Hbf | 90 vol.
- Mainz Hbf | 50 vol.
- Frankfurt Hbf | 45 vol.
LOAD: 300 vol.
- Ulm Hbf | 45 vol.
- Würzburg Hbf | 95 vol.
- Nürnberg Hbf | 20 vol.
- Leipzig Hbf | 65 vol.
- Dresden Hbf | 75 vol.
LOAD: 295 vol.
- Osnabrück Hbf | 40 vol.
- Bremen Hbf | 95 vol.
- Hamburg Hbf | 85 vol.
- Kiel Hbf | 75 vol.
LOAD: 300 vol.
- Freiburg Hbf | 20 vol.
- Karlsruhe Hbf | 70 vol.
- Stuttgart Hbf | 80 vol.
- Mannheim Hbf | 30 vol.
- Kassel-Wilhelmshöhe | 65 vol.
- Hannover Hbf | 35 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: 1195 vol. | Vehicle capacity: 300 vol. Loads: [65, 0, 25, 45, 35, 90, 80, 75, 85, 0, 95, 65, 0, 20, 70, 45, 90, 30, 75, 50, 95, 0, 40, 20] ITERATION Generation: #1 Best cost: 8075.611 | Path: [1, 0, 2, 16, 5, 17, 1, 7, 11, 4, 10, 13, 1, 8, 18, 22, 20, 1, 15, 6, 14, 19, 3, 1, 23, 1] Best cost: 7691.851 | Path: [1, 3, 19, 20, 13, 17, 23, 2, 1, 11, 7, 4, 10, 1, 8, 18, 22, 0, 1, 15, 6, 14, 16, 1, 5, 1] Best cost: 7083.558 | Path: [1, 8, 18, 10, 4, 1, 7, 11, 0, 19, 3, 1, 22, 2, 16, 5, 17, 23, 1, 13, 20, 6, 14, 1, 15, 1] Best cost: 6913.923 | Path: [1, 16, 2, 5, 3, 19, 1, 11, 7, 13, 20, 15, 1, 8, 18, 4, 10, 1, 0, 17, 14, 6, 23, 1, 22, 1] Best cost: 6718.897 | Path: [1, 23, 14, 17, 3, 19, 6, 1, 11, 7, 20, 13, 15, 1, 4, 10, 8, 18, 1, 16, 2, 5, 22, 1, 0, 1] Best cost: 6364.546 | Path: [1, 6, 15, 14, 17, 19, 2, 1, 7, 11, 13, 20, 3, 1, 18, 8, 10, 22, 1, 4, 0, 16, 5, 23, 1] Best cost: 6356.142 | Path: [1, 0, 4, 8, 18, 22, 1, 7, 11, 13, 20, 3, 1, 10, 2, 16, 5, 1, 19, 17, 14, 6, 15, 23, 1] Best cost: 6129.764 | Path: [1, 2, 16, 5, 19, 3, 1, 11, 7, 20, 13, 15, 1, 8, 18, 10, 22, 1, 4, 0, 17, 14, 6, 23, 1] Generation: #2 Best cost: 6096.472 | Path: [1, 16, 2, 5, 19, 3, 1, 11, 7, 13, 20, 15, 1, 8, 18, 10, 22, 1, 4, 0, 17, 14, 6, 23, 1] Best cost: 6050.725 | Path: [1, 2, 16, 5, 19, 3, 1, 7, 11, 13, 20, 15, 1, 8, 18, 10, 22, 1, 4, 0, 17, 14, 6, 23, 1] OPTIMIZING each tour... Current: [[1, 2, 16, 5, 19, 3, 1], [1, 7, 11, 13, 20, 15, 1], [1, 8, 18, 10, 22, 1], [1, 4, 0, 17, 14, 6, 23, 1]] [2] Cost: 1527.486 to 1524.658 | Optimized: [1, 15, 20, 13, 11, 7, 1] [3] Cost: 1132.488 to 1107.833 | Optimized: [1, 22, 10, 8, 18, 1] [4] Cost: 1893.311 to 1891.723 | Optimized: [1, 23, 14, 6, 17, 0, 4, 1] ACO RESULTS [1/300 vol./1497.440 km] Berlin Hbf -> Düsseldorf Hbf -> Köln Hbf -> Aachen Hbf -> Mainz Hbf -> Frankfurt Hbf --> Berlin Hbf [2/300 vol./1524.658 km] Berlin Hbf -> Ulm Hbf -> Würzburg Hbf -> Nürnberg Hbf -> Leipzig Hbf -> Dresden Hbf --> Berlin Hbf [3/295 vol./1107.833 km] Berlin Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [4/300 vol./1891.723 km] Berlin Hbf -> Freiburg Hbf -> Karlsruhe Hbf -> Stuttgart Hbf -> Mannheim Hbf -> Kassel-Wilhelmshöhe -> Hannover Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 6021.654 km.