
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: 21 customers
- Kassel-Wilhelmshöhe (35 vol.)
- Düsseldorf Hbf (100 vol.)
- Frankfurt Hbf (100 vol.)
- Hannover Hbf (95 vol.)
- Aachen Hbf (25 vol.)
- Stuttgart Hbf (70 vol.)
- Hamburg Hbf (95 vol.)
- Bremen Hbf (85 vol.)
- Leipzig Hbf (100 vol.)
- Dortmund Hbf (20 vol.)
- Nürnberg Hbf (75 vol.)
- Karlsruhe Hbf (85 vol.)
- Ulm Hbf (20 vol.)
- Köln Hbf (70 vol.)
- Mannheim Hbf (40 vol.)
- Kiel Hbf (65 vol.)
- Mainz Hbf (60 vol.)
- Würzburg Hbf (55 vol.)
- Saarbrücken Hbf (90 vol.)
- Osnabrück Hbf (50 vol.)
- Freiburg Hbf (95 vol.)
Tour 1
COST: 1300.36 km
LOAD: 290 vol.
- Leipzig Hbf | 100 vol.
- Mainz Hbf | 60 vol.
- Würzburg Hbf | 55 vol.
- Nürnberg Hbf | 75 vol.
Tour 2
COST: 1107.833 km
LOAD: 295 vol.
- Osnabrück Hbf | 50 vol.
- Bremen Hbf | 85 vol.
- Hamburg Hbf | 95 vol.
- Kiel Hbf | 65 vol.
Tour 3
COST: 1173.646 km
LOAD: 285 vol.
- Dortmund Hbf | 20 vol.
- Düsseldorf Hbf | 100 vol.
- Köln Hbf | 70 vol.
- Hannover Hbf | 95 vol.
Tour 4
COST: 1516.842 km
LOAD: 280 vol.
- Kassel-Wilhelmshöhe | 35 vol.
- Frankfurt Hbf | 100 vol.
- Mannheim Hbf | 40 vol.
- Karlsruhe Hbf | 85 vol.
- Ulm Hbf | 20 vol.
Tour 5
COST: 1934.193 km
LOAD: 280 vol.
- Stuttgart Hbf | 70 vol.
- Freiburg Hbf | 95 vol.
- Saarbrücken Hbf | 90 vol.
- Aachen Hbf | 25 vol.

LOAD: 290 vol.
- Leipzig Hbf | 100 vol.
- Mainz Hbf | 60 vol.
- Würzburg Hbf | 55 vol.
- Nürnberg Hbf | 75 vol.

LOAD: 295 vol.
- Osnabrück Hbf | 50 vol.
- Bremen Hbf | 85 vol.
- Hamburg Hbf | 95 vol.
- Kiel Hbf | 65 vol.

LOAD: 285 vol.
- Dortmund Hbf | 20 vol.
- Düsseldorf Hbf | 100 vol.
- Köln Hbf | 70 vol.
- Hannover Hbf | 95 vol.

LOAD: 280 vol.
- Kassel-Wilhelmshöhe | 35 vol.
- Frankfurt Hbf | 100 vol.
- Mannheim Hbf | 40 vol.
- Karlsruhe Hbf | 85 vol.
- Ulm Hbf | 20 vol.

LOAD: 280 vol.
- Stuttgart Hbf | 70 vol.
- Freiburg Hbf | 95 vol.
- Saarbrücken Hbf | 90 vol.
- Aachen Hbf | 25 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: 1430 vol. | Vehicle capacity: 300 vol. Loads: [35, 0, 100, 100, 95, 25, 70, 0, 95, 0, 85, 100, 20, 75, 85, 20, 70, 40, 65, 60, 55, 90, 50, 95] ITERATION Generation: #1 Best cost: 8161.586 | Path: [1, 0, 22, 10, 8, 12, 1, 11, 4, 16, 5, 1, 21, 19, 3, 17, 1, 18, 2, 20, 13, 1, 15, 6, 14, 23, 1] Best cost: 7598.755 | Path: [1, 2, 16, 5, 12, 22, 0, 1, 11, 4, 8, 1, 18, 10, 6, 15, 17, 1, 13, 20, 3, 19, 1, 21, 14, 23, 1] Best cost: 7522.473 | Path: [1, 8, 18, 10, 22, 1, 11, 0, 3, 19, 1, 4, 2, 16, 12, 1, 20, 13, 6, 14, 1, 17, 21, 23, 15, 5, 1] Best cost: 7478.989 | Path: [1, 15, 6, 14, 17, 19, 12, 1, 11, 13, 20, 0, 5, 1, 8, 18, 10, 22, 1, 4, 2, 16, 1, 3, 23, 21, 1] Best cost: 7353.216 | Path: [1, 3, 19, 17, 14, 1, 11, 4, 8, 1, 18, 10, 22, 12, 16, 1, 0, 2, 5, 21, 15, 1, 13, 20, 6, 23, 1] Best cost: 7280.743 | Path: [1, 15, 6, 14, 17, 19, 5, 1, 11, 13, 20, 0, 12, 1, 4, 10, 8, 1, 18, 22, 2, 16, 1, 3, 21, 23, 1] Best cost: 7143.883 | Path: [1, 15, 6, 14, 17, 19, 12, 1, 11, 0, 3, 20, 1, 8, 18, 10, 22, 1, 4, 2, 16, 5, 1, 13, 23, 21, 1] Generation: #2 Best cost: 7087.411 | Path: [1, 13, 20, 3, 19, 1, 11, 4, 8, 1, 18, 10, 22, 12, 16, 1, 0, 2, 5, 21, 17, 1, 15, 6, 14, 23, 1] Generation: #10 Best cost: 7064.497 | Path: [1, 11, 13, 20, 19, 1, 8, 18, 10, 22, 1, 4, 12, 2, 16, 1, 0, 3, 17, 14, 15, 1, 6, 23, 21, 5, 1] OPTIMIZING each tour... Current: [[1, 11, 13, 20, 19, 1], [1, 8, 18, 10, 22, 1], [1, 4, 12, 2, 16, 1], [1, 0, 3, 17, 14, 15, 1], [1, 6, 23, 21, 5, 1]] [1] Cost: 1305.784 to 1300.360 | Optimized: [1, 11, 19, 20, 13, 1] [2] Cost: 1132.488 to 1107.833 | Optimized: [1, 22, 10, 8, 18, 1] [3] Cost: 1175.190 to 1173.646 | Optimized: [1, 12, 2, 16, 4, 1] ACO RESULTS [1/290 vol./1300.360 km] Berlin Hbf -> Leipzig Hbf -> Mainz Hbf -> Würzburg Hbf -> Nürnberg Hbf --> Berlin Hbf [2/295 vol./1107.833 km] Berlin Hbf -> Osnabrück Hbf -> Bremen Hbf -> Hamburg Hbf -> Kiel Hbf --> Berlin Hbf [3/285 vol./1173.646 km] Berlin Hbf -> Dortmund Hbf -> Düsseldorf Hbf -> Köln Hbf -> Hannover Hbf --> Berlin Hbf [4/280 vol./1516.842 km] Berlin Hbf -> Kassel-Wilhelmshöhe -> Frankfurt Hbf -> Mannheim Hbf -> Karlsruhe Hbf -> Ulm Hbf --> Berlin Hbf [5/280 vol./1934.193 km] Berlin Hbf -> Stuttgart Hbf -> Freiburg Hbf -> Saarbrücken Hbf -> Aachen Hbf --> Berlin Hbf OPTIMIZATION RESULT: 5 tours | 7032.874 km.