]> git.sesse.net Git - stockfish/blobdiff - src/uci.cpp
Simplify pawn threats and merge into ThreatenedByPawn[]
[stockfish] / src / uci.cpp
index 644fc4738acbaf41ef84549afa5e7ade86d50403..2650706459abf210ac125298725c3fe7e6c8ddc7 100644 (file)
@@ -197,12 +197,8 @@ void UCI::loop(int argc, char* argv[]) {
                     << "\n"       << Options
                     << "\nuciok"  << sync_endl;
 
-      else if (token == "eval")
-      {
-          Search::RootColor = pos.side_to_move(); // Ensure it is set
-          sync_cout << Eval::trace(pos) << sync_endl;
-      }
-      else if (token == "ucinewgame") { /* Avoid returning "Unknown command" */ }
+      else if (token == "eval")       sync_cout << Eval::trace(pos) << sync_endl;
+      else if (token == "ucinewgame") TT.clear();
       else if (token == "go")         go(pos, is);
       else if (token == "position")   position(pos, is);
       else if (token == "setoption")  setoption(is);