An implementation of a Traveling Salesman Problem solver
Go to file
Natty 48b9769777
Mardown README
2023-07-15 20:10:46 +02:00
.gitignore Initial commit 2023-07-15 20:09:47 +02:00
CMakeLists.txt Initial commit 2023-07-15 20:09:47 +02:00
README.md Mardown README 2023-07-15 20:10:46 +02:00
main.cpp Initial commit 2023-07-15 20:09:47 +02:00
renderwindow.cpp Initial commit 2023-07-15 20:09:47 +02:00
renderwindow.h Initial commit 2023-07-15 20:09:47 +02:00

README.md

tsp

An implementation of a Traveling Salesman Problem (TSP) solver in C++.

Dependencies

  • Qt 6
  • SDL2
  • CMake 3.25+

Build

mkdir build && cd build
cmake ..
make

Run

./tsp

License

Consider the content of this repository licensed under the Unlicense, but note that the dependencies may be licensed differently, and that some parts of the code have been adapted from other sources (marked via comments).