An implementation of a Traveling Salesman Problem solver
Go to file
Natty 0bd849d409
Initial commit
2023-07-15 20:09:47 +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 Initial commit 2023-07-15 20:09:47 +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

# tsp

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

## Dependencies

* Qt 6
* SDL2
* CMake 3.25+

## Build

```bash
mkdir build && cd build
cmake ..
make
```

## Run

```bash
./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).