
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
- Kassel-Wilhelmshöhe (90 vol.)
- Düsseldorf Hbf (65 vol.)
- Frankfurt Hbf (100 vol.)
- Dresden Hbf (75 vol.)
- Hamburg Hbf (50 vol.)
- Bremen Hbf (20 vol.)
- Leipzig Hbf (80 vol.)
- Dortmund Hbf (35 vol.)
- Nürnberg Hbf (75 vol.)
- Ulm Hbf (50 vol.)
- Köln Hbf (95 vol.)
- Kiel Hbf (90 vol.)
- Mainz Hbf (45 vol.)
- Osnabrück Hbf (50 vol.)
- Freiburg Hbf (45 vol.)
Tour 1
COST: 1401.261 km
LOAD: 290 vol.
- Mainz Hbf | 45 vol.
- Köln Hbf | 95 vol.
- Düsseldorf Hbf | 65 vol.
- Dortmund Hbf | 35 vol.
- Osnabrück Hbf | 50 vol.
Tour 2
COST: 1264.499 km
LOAD: 265 vol.
- Dresden Hbf | 75 vol.
- Leipzig Hbf | 80 vol.
- Kassel-Wilhelmshöhe | 90 vol.
- Bremen Hbf | 20 vol.
Tour 3
COST: 1727.828 km
LOAD: 270 vol.
- Frankfurt Hbf | 100 vol.
- Freiburg Hbf | 45 vol.
- Ulm Hbf | 50 vol.
- Nürnberg Hbf | 75 vol.
Tour 4
COST: 732.557 km
LOAD: 140 vol.
- Hamburg Hbf | 50 vol.
- Kiel Hbf | 90 vol.

LOAD: 290 vol.
- Mainz Hbf | 45 vol.
- Köln Hbf | 95 vol.
- Düsseldorf Hbf | 65 vol.
- Dortmund Hbf | 35 vol.
- Osnabrück Hbf | 50 vol.

LOAD: 265 vol.
- Dresden Hbf | 75 vol.
- Leipzig Hbf | 80 vol.
- Kassel-Wilhelmshöhe | 90 vol.
- Bremen Hbf | 20 vol.

LOAD: 270 vol.
- Frankfurt Hbf | 100 vol.
- Freiburg Hbf | 45 vol.
- Ulm Hbf | 50 vol.
- Nürnberg Hbf | 75 vol.

LOAD: 140 vol.
- Hamburg Hbf | 50 vol.
- Kiel Hbf | 90 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: 965 vol. | Vehicle capacity: 300 vol. Loads: [90, 0, 65, 100, 0, 0, 0, 75, 50, 0, 20, 80, 35, 75, 0, 50, 95, 0, 90, 45, 0, 0, 50, 45] ITERATION Generation: #1 Best cost: 6646.777 | Path: [1, 0, 22, 12, 2, 19, 1, 11, 7, 13, 15, 10, 1, 8, 18, 16, 23, 1, 3, 1] Best cost: 5983.271 | Path: [1, 2, 16, 12, 22, 10, 1, 11, 7, 13, 15, 1, 8, 18, 0, 19, 1, 3, 23, 1] Best cost: 5862.953 | Path: [1, 12, 2, 16, 19, 23, 1, 7, 11, 0, 22, 1, 8, 18, 10, 3, 1, 13, 15, 1] Best cost: 5514.923 | Path: [1, 13, 15, 23, 19, 2, 10, 1, 11, 7, 8, 18, 1, 22, 12, 16, 3, 1, 0, 1] Generation: #2 Best cost: 5205.095 | Path: [1, 2, 16, 12, 22, 10, 1, 11, 7, 13, 15, 1, 0, 3, 19, 23, 1, 8, 18, 1] Best cost: 5187.637 | Path: [1, 16, 2, 12, 22, 10, 1, 7, 11, 13, 15, 1, 0, 19, 3, 23, 1, 8, 18, 1] Generation: #5 Best cost: 5139.064 | Path: [1, 22, 12, 2, 16, 19, 1, 7, 11, 0, 10, 1, 13, 15, 23, 3, 1, 8, 18, 1] OPTIMIZING each tour... Current: [[1, 22, 12, 2, 16, 19, 1], [1, 7, 11, 0, 10, 1], [1, 13, 15, 23, 3, 1], [1, 8, 18, 1]] [1] Cost: 1406.354 to 1401.261 | Optimized: [1, 19, 16, 2, 12, 22, 1] [3] Cost: 1735.654 to 1727.828 | Optimized: [1, 3, 23, 15, 13, 1] ACO RESULTS [1/290 vol./1401.261 km] Berlin Hbf -> Mainz Hbf -> Köln Hbf -> Düsseldorf Hbf -> Dortmund Hbf -> Osnabrück Hbf --> Berlin Hbf [2/265 vol./1264.499 km] Berlin Hbf -> Dresden Hbf -> Leipzig Hbf -> Kassel-Wilhelmshöhe -> Bremen Hbf --> Berlin Hbf [3/270 vol./1727.828 km] Berlin Hbf -> Frankfurt Hbf -> Freiburg Hbf -> Ulm Hbf -> Nürnberg Hbf --> Berlin Hbf [4/140 vol./ 732.557 km] Berlin Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf OPTIMIZATION RESULT: 4 tours | 5126.145 km.