X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fuci.cpp;h=b8b371acfc036a4a08570773d058b28ef12173fe;hb=9dbb3ae8b2c5ef4ad2b399a42707ad1fd851c68b;hp=a9fe4f207e856d715b0a6dc9bb23c7238c9cd28a;hpb=926f215061311392bc26c7bc4bde5b719dbab4e5;p=stockfish 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;