1 2 3 4 5 6 7 8 9 10 11 12 13
#include "uci.hpp" #include "zobrist.hpp" #include <cstdlib> #include <ctime> int main() { InitZobrist(); srand(time(0)); Uci(); return 0; }