Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 384 Bytes

README.md

File metadata and controls

8 lines (7 loc) · 384 Bytes

TSP

Travelling salesman problem : An application that uses a set of cities (coordinates) and distances between them, finds best(shortest) tour (visiting all cities exactly once and returning to the origin city) in a given amount of time . Implemented this using Genetic algorithm and Simulated annealing separately and compare time and tour-cost.

This was done in AI course.