TSP-VRP-GENETICS-ALGORITHM

Implementation of TSP and VRP algorithms using a Genetic Algorithm

Genetic Algorithms for TSP and VRP

Genetic Algorithms for solving the travelling salesman problem and the vehicle routing problem (TSP, VRP) This practical assignment requires to develop, using Python, an implementation of genetic algorithms for solving the Travelling Salesman Problem -- TSP and the Vehicle Routing Problem -- VRP (at least should include TSP)

Travelling Salesman Problem. Find the optimum itinerary for a salesman that needs to visit a set of cities, visiting each city exactly once, except the city where the trip started, that must be the last city to visit. Vehicle Routing Problem. Find routes for shipping supplies to a set of customers having different demands. The routes should be adjusted to the available fleet of trucks in order to get minimum costs.

First part: genetic operators

A full standard genetic algorithm should be implemented in Python, including several (at least one) permutation-specific operators. For example:

Second part: Variants over the standard GA

Modify the standard version of genetic algorithms developed in the previous step, by choosing only one of the following:

Genetic Algorithm with Varying Population Size The idea is to introduce the concept of "ageing" into the population of chromosomes. Each individual will get a "life-expectancy" value, which directly depends on the fitness. Parents are selected randomly, without paying attention to their fitness, but at each step all chromosomes gain +1 to their age, and those reaching their life-expectancy are removed from the population. It is very important to design a good function calculating life-expectancy, so that better individuals survive during more generations, and therefore get more chances to be selected for crossover.

Cellular Genetic Algorithm The idea is to introduce the concept of "neighbourhood" into the population of chromosomes (for instance, placing them into a grid-like arrangement), in such a way that each individual can only perform crossover with its direct neighbours.

Third part: Experimentation

Run over the same instances both the standard GA (from first part) as well as the modified version (from second part). Compare the quality of their results and their performance. Due to the inherent randomness of GA, the experiments performed over each instance should be run several times.

Final part: Documentation

A pdf report explaining the details of the implementations developed:

Bibliography

It is also allowed to search the web for further references and/or related material. It is mandatory to include in the bibliography all references used.