Stockfish DD

Stockfish bench signature is: 8596156
This commit is contained in:
Marco Costalba
2013-11-29 10:23:14 +01:00
parent 67e5581e37
commit c5bb9b9da9
4 changed files with 4 additions and 5 deletions

View File

@@ -27,7 +27,6 @@
#include "position.h"
#include "search.h"
#include "thread.h"
#include "tt.h"
#include "ucioption.h"
using namespace std;
@@ -108,7 +107,7 @@ void UCI::loop(const string& args) {
Search::RootColor = pos.side_to_move(); // Ensure it is set
sync_cout << Eval::trace(pos) << sync_endl;
}
else if (token == "ucinewgame") TT.clear();
else if (token == "ucinewgame") { /* Avoid returning "Unknown command" */ }
else if (token == "go") go(pos, is);
else if (token == "position") position(pos, is);
else if (token == "setoption") setoption(is);