An implementation of a Traveling Salesman Problem solver
Go to file
Natty a84d4c5e54
Generating points along SVG paths
2023-07-16 20:51:40 +02:00
.gitignore Initial commit 2023-07-15 20:09:47 +02:00
CMakeLists.txt Generating points along SVG paths 2023-07-16 20:51:40 +02:00
README.md Mardown README 2023-07-15 20:10:46 +02:00
main.cpp Generating points along SVG paths 2023-07-16 20:51:40 +02:00
renderwindow.cpp Generating points along SVG paths 2023-07-16 20:51:40 +02:00
renderwindow.h Generating points along SVG paths 2023-07-16 20:51:40 +02:00
svgpathextractor.cpp Generating points along SVG paths 2023-07-16 20:51:40 +02:00
svgpathextractor.h Generating points along SVG paths 2023-07-16 20:51:40 +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).