X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=b8b371acfc036a4a08570773d058b28ef12173fe;hp=a9fe4f207e856d715b0a6dc9bb23c7238c9cd28a;hb=83e19fbed539fc05626d82afefde730bdcb344ab;hpb=926f215061311392bc26c7bc4bde5b719dbab4e5 diff --git a/src/uci.cpp b/src/uci.cpp index a9fe4f20..b8b371ac 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -27,7 +27,6 @@ #include "search.h" #include "thread.h" #include "timeman.h" -#include "tt.h" #include "uci.h" using namespace std; @@ -181,7 +180,7 @@ void UCI::loop(int argc, char* argv[]) { else if (token == "ucinewgame") { - TT.clear(); + Search::reset(); Time.availableNodes = 0; } else if (token == "isready") sync_cout << "readyok" << sync_endl;