Skip to content

Commit 3caeabf

Browse files
committed
Stockfish 2.3.1
Stockfish bench signature is: 5423738
1 parent fdbe800 commit 3caeabf

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 YYMMDD) is used as a version number.
3535

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

3939

src/uci.cpp

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

3231
using namespace std;
@@ -94,7 +93,7 @@ void UCI::loop(const string& args) {
9493
go(pos, is);
9594

9695
else if (token == "ucinewgame")
97-
TT.clear();
96+
{ /* Avoid returning "Unknown command" */ }
9897

9998
else if (token == "isready")
10099
sync_cout << "readyok" << sync_endl;

src/ucioption.cpp

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

0 commit comments

Comments
 (0)