I\'m trying to solve the Travelling Salesman Problem (TSP) with Genetic algorithm. My genome is a permutation of a vertex in graph (path for salesman).
How should
The purpose of crossover is to expand the evolutionary search space by bringing together novel genomic combinations.
The only real criteria required for the evolutionary process is that the product of crossover contains portions of both parents and represents a valid genome.
Only you know the validity rules for your algorithm so only you can specify a crossover method that will work (unless you want to share more details of the validation rules for you genome structure).