
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 (80 vol.)
- Frankfurt Hbf (55 vol.)
- Hannover Hbf (95 vol.)
- Stuttgart Hbf (20 vol.)
- Dresden Hbf (55 vol.)
- Hamburg Hbf (75 vol.)
- Leipzig Hbf (65 vol.)
- Ulm Hbf (20 vol.)
- Köln Hbf (100 vol.)
- Mannheim Hbf (95 vol.)
- Kiel Hbf (75 vol.)
- Würzburg Hbf (70 vol.)
- Saarbrücken Hbf (60 vol.)
- Osnabrück Hbf (85 vol.)
- Freiburg Hbf (95 vol.)
Tour 1
COST: 1884.545 km
LOAD: 290 vol.
- Mannheim Hbf | 95 vol.
- Saarbrücken Hbf | 60 vol.
- Freiburg Hbf | 95 vol.
- Stuttgart Hbf | 20 vol.
- Ulm Hbf | 20 vol.
Tour 2
COST: 1307.607 km
LOAD: 245 vol.
- Frankfurt Hbf | 55 vol.
- Würzburg Hbf | 70 vol.
- Leipzig Hbf | 65 vol.
- Dresden Hbf | 55 vol.
Tour 3
COST: 881.934 km
LOAD: 245 vol.
- Hannover Hbf | 95 vol.
- Hamburg Hbf | 75 vol.
- Kiel Hbf | 75 vol.
Tour 4
COST: 1207.932 km
LOAD: 265 vol.
- Köln Hbf | 100 vol.
- Düsseldorf Hbf | 80 vol.
- Osnabrück Hbf | 85 vol.

LOAD: 290 vol.
- Mannheim Hbf | 95 vol.
- Saarbrücken Hbf | 60 vol.
- Freiburg Hbf | 95 vol.
- Stuttgart Hbf | 20 vol.
- Ulm Hbf | 20 vol.

LOAD: 245 vol.
- Frankfurt Hbf | 55 vol.
- Würzburg Hbf | 70 vol.
- Leipzig Hbf | 65 vol.
- Dresden Hbf | 55 vol.

LOAD: 245 vol.
- Hannover Hbf | 95 vol.
- Hamburg Hbf | 75 vol.
- Kiel Hbf | 75 vol.

LOAD: 265 vol.
- Köln Hbf | 100 vol.
- Düsseldorf Hbf | 80 vol.
- Osnabrück Hbf | 85 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: 1045 vol. | Vehicle capacity: 300 vol. Loads: [0, 0, 80, 55, 95, 0, 20, 55, 75, 0, 0, 65, 0, 0, 0, 20, 100, 95, 75, 0, 70, 60, 85, 95] ITERATION Generation: #1 Best cost: 6262.996 | Path: [1, 2, 16, 22, 15, 1, 7, 11, 20, 3, 6, 1, 8, 18, 4, 1, 17, 21, 23, 1] Best cost: 6232.435 | Path: [1, 7, 11, 4, 22, 1, 8, 18, 20, 3, 6, 1, 15, 17, 21, 23, 1, 2, 16, 1] Best cost: 6115.583 | Path: [1, 8, 18, 4, 7, 1, 11, 20, 3, 17, 1, 22, 2, 16, 6, 1, 15, 21, 23, 1] Best cost: 5891.618 | Path: [1, 20, 3, 17, 6, 15, 1, 7, 11, 4, 8, 1, 22, 2, 16, 1, 18, 23, 21, 1] Best cost: 5635.875 | Path: [1, 11, 7, 20, 6, 15, 3, 1, 18, 8, 4, 1, 22, 16, 2, 1, 17, 21, 23, 1] Best cost: 5582.320 | Path: [1, 7, 11, 20, 3, 6, 15, 1, 8, 18, 4, 1, 2, 16, 22, 1, 17, 21, 23, 1] Best cost: 5483.773 | Path: [1, 23, 21, 17, 6, 15, 1, 11, 7, 20, 3, 1, 8, 18, 4, 1, 22, 16, 2, 1] Generation: #3 Best cost: 5463.614 | Path: [1, 15, 6, 17, 21, 23, 1, 11, 7, 20, 3, 1, 8, 18, 4, 1, 22, 2, 16, 1] OPTIMIZING each tour... Current: [[1, 15, 6, 17, 21, 23, 1], [1, 11, 7, 20, 3, 1], [1, 8, 18, 4, 1], [1, 22, 2, 16, 1]] [1] Cost: 1990.583 to 1884.545 | Optimized: [1, 17, 21, 23, 6, 15, 1] [2] Cost: 1344.791 to 1307.607 | Optimized: [1, 3, 20, 11, 7, 1] [3] Cost: 915.093 to 881.934 | Optimized: [1, 4, 8, 18, 1] [4] Cost: 1213.147 to 1207.932 | Optimized: [1, 16, 2, 22, 1] ACO RESULTS [1/290 vol./1884.545 km] Berlin Hbf -> Mannheim Hbf -> Saarbrücken Hbf -> Freiburg Hbf -> Stuttgart Hbf -> Ulm Hbf --> Berlin Hbf [2/245 vol./1307.607 km] Berlin Hbf -> Frankfurt Hbf -> Würzburg Hbf -> Leipzig Hbf -> Dresden Hbf --> Berlin Hbf [3/245 vol./ 881.934 km] Berlin Hbf -> Hannover Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [4/265 vol./1207.932 km] Berlin Hbf -> Köln Hbf -> Düsseldorf Hbf -> Osnabrück Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5282.018 km.