diff --git a/shuffle.exe b/shuffle.exe index b24d251..a8298e8 100644 Binary files a/shuffle.exe and b/shuffle.exe differ diff --git a/src/uci.h b/src/uci.h index 4f240e8..9a393ac 100644 --- a/src/uci.h +++ b/src/uci.h @@ -222,17 +222,11 @@ void parse_go(char *command) void uci_loop() { int max_hash = 1024; int mb = 64; - // clear STDIN & STDOUT buffers - setbuf(stdin, NULL); + setbuf(stdout, NULL); char input[2000]; - // printf("id name %s %s\n",engine_name,version); - // printf("id author Arjun Basandrai\n"); - // printf("option name Hash type spin default 64 min 4 max %d\n",max_hash); - // printf("uciok\n"); - // main loop while (1) { memset(input, 0, sizeof(input)); @@ -278,7 +272,6 @@ void uci_loop() { if (mb < 4) mb = 4; if (mb > max_hash) mb = max_hash; - // printf("Set hash table size to %dMB\n", mb); init_transposition_table(mb); } }