├── .gitignore ├── LICENSE ├── README.md └── src ├── CMakeLists.txt ├── base.h ├── config.h ├── engines ├── fourkdotcpp.cpp ├── fourkdotcpp.h ├── fourku.cpp ├── fourku.h ├── toy.cpp ├── toy.h ├── toy_base.h ├── toy_tapered.cpp └── toy_tapered.h ├── external └── chess.hpp ├── main.cpp ├── threadpool.cpp ├── threadpool.h ├── tuner.cpp └── tuner.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/README.md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/base.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/config.h -------------------------------------------------------------------------------- /src/engines/fourkdotcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/engines/fourkdotcpp.cpp -------------------------------------------------------------------------------- /src/engines/fourkdotcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/engines/fourkdotcpp.h -------------------------------------------------------------------------------- /src/engines/fourku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/engines/fourku.cpp -------------------------------------------------------------------------------- /src/engines/fourku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/engines/fourku.h -------------------------------------------------------------------------------- /src/engines/toy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/engines/toy.cpp -------------------------------------------------------------------------------- /src/engines/toy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/engines/toy.h -------------------------------------------------------------------------------- /src/engines/toy_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/engines/toy_base.h -------------------------------------------------------------------------------- /src/engines/toy_tapered.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/engines/toy_tapered.cpp -------------------------------------------------------------------------------- /src/engines/toy_tapered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/engines/toy_tapered.h -------------------------------------------------------------------------------- /src/external/chess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/external/chess.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/threadpool.cpp -------------------------------------------------------------------------------- /src/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/threadpool.h -------------------------------------------------------------------------------- /src/tuner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/tuner.cpp -------------------------------------------------------------------------------- /src/tuner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GediminasMasaitis/texel-tuner/HEAD/src/tuner.h --------------------------------------------------------------------------------