A simple dynamic programming implementation for the TSPTW problem
For more information about the implementation feel free to read the associated article located in the article
folder.
Go 1.16
You can clone the project and run it by yourself using the following command
go run main.go <file name> <timeout>
<file name>
refers to the testcase to be used. Testcases are placed in the testdata
folder.
<timeout>
refers to the time limit the implementation has to return an answer in milliseconds.
- Go 1.16
- Your basic bit - Bitset implementation for Go ( Go does not have a built in implementation :( )