
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: 18 customers
- Frankfurt Hbf (80 vol.)
- Hannover Hbf (65 vol.)
- Aachen Hbf (75 vol.)
- Stuttgart Hbf (90 vol.)
- Hamburg Hbf (55 vol.)
- München Hbf (100 vol.)
- Bremen Hbf (25 vol.)
- Leipzig Hbf (40 vol.)
- Dortmund Hbf (35 vol.)
- Nürnberg Hbf (75 vol.)
- Ulm Hbf (90 vol.)
- Köln Hbf (95 vol.)
- Mannheim Hbf (75 vol.)
- Kiel Hbf (35 vol.)
- Mainz Hbf (60 vol.)
- Würzburg Hbf (30 vol.)
- Saarbrücken Hbf (70 vol.)
- Osnabrück Hbf (50 vol.)
Tour 1
COST: 1531.03 km
LOAD: 295 vol.
- Dortmund Hbf | 35 vol.
- Aachen Hbf | 75 vol.
- Köln Hbf | 95 vol.
- Mainz Hbf | 60 vol.
- Würzburg Hbf | 30 vol.
Tour 2
COST: 1279.851 km
LOAD: 270 vol.
- Leipzig Hbf | 40 vol.
- Hannover Hbf | 65 vol.
- Osnabrück Hbf | 50 vol.
- Bremen Hbf | 25 vol.
- Hamburg Hbf | 55 vol.
- Kiel Hbf | 35 vol.
Tour 3
COST: 1447.27 km
LOAD: 280 vol.
- München Hbf | 100 vol.
- Ulm Hbf | 90 vol.
- Stuttgart Hbf | 90 vol.
Tour 4
COST: 1564.329 km
LOAD: 300 vol.
- Frankfurt Hbf | 80 vol.
- Mannheim Hbf | 75 vol.
- Saarbrücken Hbf | 70 vol.
- Nürnberg Hbf | 75 vol.

LOAD: 295 vol.
- Dortmund Hbf | 35 vol.
- Aachen Hbf | 75 vol.
- Köln Hbf | 95 vol.
- Mainz Hbf | 60 vol.
- Würzburg Hbf | 30 vol.

LOAD: 270 vol.
- Leipzig Hbf | 40 vol.
- Hannover Hbf | 65 vol.
- Osnabrück Hbf | 50 vol.
- Bremen Hbf | 25 vol.
- Hamburg Hbf | 55 vol.
- Kiel Hbf | 35 vol.

LOAD: 280 vol.
- München Hbf | 100 vol.
- Ulm Hbf | 90 vol.
- Stuttgart Hbf | 90 vol.

LOAD: 300 vol.
- Frankfurt Hbf | 80 vol.
- Mannheim Hbf | 75 vol.
- Saarbrücken Hbf | 70 vol.
- Nürnberg Hbf | 75 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: 1145 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 0, 80, 65, 75, 90, 0, 55, 100, 25, 40, 35, 75, 0, 90, 95, 75, 35, 60, 30, 70, 50, 0] ITERATION Generation: #1 Best cost: 7259.640 | Path: [1, 3, 19, 17, 21, 1, 11, 9, 15, 20, 12, 1, 8, 18, 10, 22, 4, 1, 16, 5, 13, 1, 6, 1] Best cost: 6466.503 | Path: [1, 5, 16, 12, 22, 10, 1, 11, 4, 8, 18, 20, 13, 1, 17, 19, 3, 21, 1, 15, 6, 9, 1] Best cost: 6463.411 | Path: [1, 8, 18, 10, 22, 4, 12, 20, 1, 11, 13, 6, 15, 1, 16, 5, 21, 19, 1, 3, 17, 9, 1] Best cost: 6440.430 | Path: [1, 9, 15, 6, 1, 11, 4, 10, 22, 12, 5, 1, 8, 18, 16, 17, 20, 1, 13, 3, 19, 21, 1] Best cost: 6384.006 | Path: [1, 20, 13, 9, 15, 1, 11, 4, 8, 18, 10, 22, 1, 19, 3, 17, 21, 1, 5, 16, 12, 6, 1] Best cost: 6290.503 | Path: [1, 6, 15, 9, 1, 11, 4, 22, 12, 16, 1, 8, 18, 10, 5, 19, 20, 1, 13, 3, 17, 21, 1] Best cost: 6128.945 | Path: [1, 16, 5, 12, 22, 10, 1, 11, 13, 20, 3, 19, 1, 8, 18, 4, 17, 21, 1, 6, 15, 9, 1] Best cost: 5921.720 | Path: [1, 18, 8, 10, 22, 12, 16, 1, 11, 13, 20, 3, 19, 1, 4, 5, 21, 17, 1, 9, 15, 6, 1] Generation: #2 Best cost: 5868.354 | Path: [1, 12, 16, 5, 19, 20, 1, 11, 4, 22, 10, 8, 18, 1, 9, 15, 6, 1, 13, 3, 17, 21, 1] OPTIMIZING each tour... Current: [[1, 12, 16, 5, 19, 20, 1], [1, 11, 4, 22, 10, 8, 18, 1], [1, 9, 15, 6, 1], [1, 13, 3, 17, 21, 1]] [1] Cost: 1532.753 to 1531.030 | Optimized: [1, 12, 5, 16, 19, 20, 1] [4] Cost: 1608.480 to 1564.329 | Optimized: [1, 3, 17, 21, 13, 1] ACO RESULTS [1/295 vol./1531.030 km] Berlin Hbf -> Dortmund Hbf -> Aachen Hbf -> Köln Hbf -> Mainz Hbf -> Würzburg Hbf --> Berlin Hbf [2/270 vol./1279.851 km] Berlin Hbf -> Leipzig Hbf -> Hannover Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [3/280 vol./1447.270 km] Berlin Hbf -> München Hbf -> Ulm Hbf -> Stuttgart Hbf --> Berlin Hbf [4/300 vol./1564.329 km] Berlin Hbf -> Frankfurt Hbf -> Mannheim Hbf -> Saarbrücken Hbf -> Nürnberg Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5822.480 km.