29 lines
446 B
Markdown
29 lines
446 B
Markdown
|
# 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).
|