CONSTRAINTS
CONSTRAINTS is my personal exploration constraint programming. This is sometimes unfortunately abbreviated to CP. This project mainly focuses on creating an almost genetic template to help model problems and apply search algorithms such as Genetic Algorithms and Simulated Annealing.
For the showcase, we'll be approximating the solution for the Travelling Salesman Problem using Genetic Algorithms.
View the repo and learn more here
Genetic Algorithm?
In short, a Genetic Algorithm is a search/optimization algorithm that uses survival of the fittest and natural evolution to try and minimise or maximise a 'fitness function' - a measure of how good of a solution we have. It will take in parameters such aspopulation count, mutation rate, selection target, elitism percentage and will simulate the evolutionary process and try to improve overall fitness.
We'll be focusing on this one in this demo!
Simulated Annealing?
Similar to Genetic Algorithm, but we're mimicking the physical process of annealing (duh!) where a material is heated and then cooled to reduce defects and minimise energy. In SA, a new point is randomly generated at each iteration, and the algorithm accepts new points that lower the objective, or points that raise the objective with a certain probability. This allows the algorithm to explore globally for solutions and avoid being trapped in local minima.
Travelling Salesman Problem?
"Given a list of cities and the distances between each pair of cities, what is the shortest possible route that visits each city exactly once and returns to the origin city?"
This is an NP-Hard problem that has a time complexity of O(n!) for a brute force solution.