Skip to content

Commit aa2368a

Browse files
committed
Stockfish 3
Stockfish bench signature is: 4176431
1 parent 293c44b commit aa2368a

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
@@ -29,7 +29,7 @@ Cowardice = 100
2929
Min Split Depth = 4
3030
Max Threads per Split Point = 5
3131
Threads = 1
32-
Use Sleeping Threads = true
32+
Use Sleeping Threads = false
3333
Hash = 128
3434
Ponder = true
3535
OwnBook = false

src/misc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ using namespace std;
3333
/// Version number. If Version is left empty, then Tag plus current
3434
/// date, in the format DD-MM-YY, are used as a version number.
3535

36-
static const string Version = "";
36+
static const string Version = "3";
3737
static const string Tag = "";
3838

3939

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;
@@ -103,7 +102,7 @@ void UCI::loop(const string& args) {
103102
<< "\n" << Options
104103
<< "\nuciok" << sync_endl;
105104

106-
else if (token == "ucinewgame") TT.clear();
105+
else if (token == "ucinewgame") { /* Avoid returning "Unknown command" */ }
107106
else if (token == "go") go(pos, is);
108107
else if (token == "position") set_position(pos, is);
109108
else if (token == "setoption") set_option(is);

src/ucioption.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void init(OptionsMap& o) {
7575
o["Min Split Depth"] = Option(msd, 4, 12, on_threads);
7676
o["Max Threads per Split Point"] = Option(5, 4, 8, on_threads);
7777
o["Threads"] = Option(cpus, 1, MAX_THREADS, on_threads);
78-
o["Use Sleeping Threads"] = Option(true);
78+
o["Use Sleeping Threads"] = Option(false);
7979
o["Hash"] = Option(32, 1, 8192, on_hash_size);
8080
o["Clear Hash"] = Option(on_clear_hash);
8181
o["Ponder"] = Option(true);

0 commit comments

Comments
 (0)