Skip to content

Commit c5bb9b9

Browse files
committed
Stockfish DD
Stockfish bench signature is: 8596156
1 parent 67e5581 commit c5bb9b9

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

polyglot.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Cowardice = 100
3232
Min Split Depth = 0
3333
Max Threads per Split Point = 5
3434
Threads = 1
35-
Idle Threads Sleep = true
35+
Idle Threads Sleep = false
3636
Hash = 128
3737
Ponder = true
3838
OwnBook = false

src/misc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ using namespace std;
2828

2929
/// Version number. If Version is left empty, then compile date, in the
3030
/// format DD-MM-YY, is shown in engine_info.
31-
static const string Version = "";
31+
static const string Version = "DD";
3232

3333

3434
/// engine_info() returns the full name of the current Stockfish version. This

src/uci.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#include "position.h"
2828
#include "search.h"
2929
#include "thread.h"
30-
#include "tt.h"
3130
#include "ucioption.h"
3231

3332
using namespace std;
@@ -108,7 +107,7 @@ void UCI::loop(const string& args) {
108107
Search::RootColor = pos.side_to_move(); // Ensure it is set
109108
sync_cout << Eval::trace(pos) << sync_endl;
110109
}
111-
else if (token == "ucinewgame") TT.clear();
110+
else if (token == "ucinewgame") { /* Avoid returning "Unknown command" */ }
112111
else if (token == "go") go(pos, is);
113112
else if (token == "position") position(pos, is);
114113
else if (token == "setoption") setoption(is);

src/ucioption.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void init(OptionsMap& o) {
7272
o["Min Split Depth"] = Option(0, 0, 12, on_threads);
7373
o["Max Threads per Split Point"] = Option(5, 4, 8, on_threads);
7474
o["Threads"] = Option(1, 1, MAX_THREADS, on_threads);
75-
o["Idle Threads Sleep"] = Option(true);
75+
o["Idle Threads Sleep"] = Option(false);
7676
o["Hash"] = Option(32, 1, 8192, on_hash_size);
7777
o["Clear Hash"] = Option(on_clear_hash);
7878
o["Ponder"] = Option(true);

0 commit comments

Comments
 (0)