mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00:00
Stockfish 5
Stockfish bench signature is: 8732553
This commit is contained in:
parent
ad937d0b2d
commit
54f8a9cb13
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ using namespace std;
|
||||||
|
|
||||||
/// Version number. If Version is left empty, then compile date in the format
|
/// Version number. If Version is left empty, then compile date in the format
|
||||||
/// DD-MM-YY and show in engine_info.
|
/// DD-MM-YY and show in engine_info.
|
||||||
static const string Version = "";
|
static const string Version = "5";
|
||||||
|
|
||||||
|
|
||||||
/// engine_info() returns the full name of the current Stockfish version. This
|
/// engine_info() returns the full name of the current Stockfish version. This
|
||||||
|
|
|
@ -202,7 +202,7 @@ void UCI::loop(int argc, char* argv[]) {
|
||||||
Search::RootColor = pos.side_to_move(); // Ensure it is set
|
Search::RootColor = pos.side_to_move(); // Ensure it is set
|
||||||
sync_cout << Eval::trace(pos) << sync_endl;
|
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 == "go") go(pos, is);
|
||||||
else if (token == "position") position(pos, is);
|
else if (token == "position") position(pos, is);
|
||||||
else if (token == "setoption") setoption(is);
|
else if (token == "setoption") setoption(is);
|
||||||
|
|
Loading…
Add table
Reference in a new issue