https://github.com/artix41/traveler
Traveler Salesman with genetic algorithm
https://github.com/artix41/traveler
c-plus-plus data-visualization genetic-algorithm travelling-salesman
Last synced: 23 days ago
JSON representation
Traveler Salesman with genetic algorithm
- Host: GitHub
- URL: https://github.com/artix41/traveler
- Owner: artix41
- Created: 2017-01-26T09:19:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-20T23:33:42.000Z (over 9 years ago)
- Last Synced: 2025-03-06T17:49:47.917Z (over 1 year ago)
- Topics: c-plus-plus, data-visualization, genetic-algorithm, travelling-salesman
- Language: C++
- Size: 1.14 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Travelling Salesman Problem with Genetic Algorithms

Use of genetic algorithms to solve the travelling salesman problem, with a GUI to test it on a real map
## Installation
### Linux and Mac
You need to install [SFML](https://www.sfml-dev.org/tutorials/2.4/start-linux-fr.php) before compiling the program.
To compile it , execute on the root of the project folder :
```bash
cmake .
make
```
To run the program, you can then do :
```bash
./traveler
```
### Windows
Install Linux, and go to previous point