Very fast Genetic Algorithm developed with java. Solving Travel Salesman Problem
For using this Framework, first of all, create "City's ArrayList" or Travel Tour List. Then create Population class. Population class has 5 parameters. They are TourList, mutateRate, eliteSize,generation and popSize.
Then call .GeneticAlgorithm() method. This method return best chromosome result.
• CreatePopulation
• GetFitness
• GeneticAlgorithm
• NextGeneration
• SortPopulation
• Mutate
• CrossingOver