]> git.sesse.net Git - stockfish/commitdiff
Stockfish 2.2.1
authorMarco Costalba <mcostalba@gmail.com>
Thu, 29 Dec 2011 10:09:11 +0000 (11:09 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Fri, 6 Jan 2012 16:01:40 +0000 (17:01 +0100)
Hopefully fixed the "lose on time" issue.

stockfish bench signature is: 5457475

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
polyglot.ini
src/misc.cpp
src/ucioption.cpp

index 2b6f577fe8be577bc4fcd2c78b1e771813b7a9b5..9b47071017e69a034b215339a721f46c45dbdefd 100644 (file)
@@ -29,7 +29,7 @@ Cowardice = 100
 Min Split Depth = 4
 Max Threads per Split Point = 5
 Threads = 1
 Min Split Depth = 4
 Max Threads per Split Point = 5
 Threads = 1
-Use Sleeping Threads = true
+Use Sleeping Threads = false
 Hash = 128
 Ponder = true
 OwnBook = false
 Hash = 128
 Ponder = true
 OwnBook = false
index d0d2fcc018c9865099eff3db7fa0b7d21a94880b..2a0c95b798473d350e951dc29e4b49c2600f8e3d 100644 (file)
@@ -55,7 +55,7 @@ using namespace std;
 /// Version number. If Version is left empty, then Tag plus current
 /// date (in the format YYMMDD) is used as a version number.
 
 /// Version number. If Version is left empty, then Tag plus current
 /// date (in the format YYMMDD) is used as a version number.
 
-static const string Version = "";
+static const string Version = "2.2.1";
 static const string Tag = "";
 
 
 static const string Tag = "";
 
 
index 8162bc4294fa2870ad411b9814440f84b847cf24..42071b0a9560d1c866ec8757c3ffdb6554da5612 100644 (file)
@@ -61,14 +61,14 @@ OptionsMap::OptionsMap() {
   o["Min Split Depth"]             = UCIOption(msd, 4, 7);
   o["Max Threads per Split Point"] = UCIOption(5, 4, 8);
   o["Threads"]                     = UCIOption(cpus, 1, MAX_THREADS);
   o["Min Split Depth"]             = UCIOption(msd, 4, 7);
   o["Max Threads per Split Point"] = UCIOption(5, 4, 8);
   o["Threads"]                     = UCIOption(cpus, 1, MAX_THREADS);
-  o["Use Sleeping Threads"]        = UCIOption(true);
+  o["Use Sleeping Threads"]        = UCIOption(false);
   o["Hash"]                        = UCIOption(32, 4, 8192);
   o["Clear Hash"]                  = UCIOption(false, "button");
   o["Ponder"]                      = UCIOption(true);
   o["OwnBook"]                     = UCIOption(true);
   o["MultiPV"]                     = UCIOption(1, 1, 500);
   o["Skill Level"]                 = UCIOption(20, 0, 20);
   o["Hash"]                        = UCIOption(32, 4, 8192);
   o["Clear Hash"]                  = UCIOption(false, "button");
   o["Ponder"]                      = UCIOption(true);
   o["OwnBook"]                     = UCIOption(true);
   o["MultiPV"]                     = UCIOption(1, 1, 500);
   o["Skill Level"]                 = UCIOption(20, 0, 20);
-  o["Emergency Move Horizon"]      = UCIOption(30, 0, 50);
+  o["Emergency Move Horizon"]      = UCIOption(40, 0, 50);
   o["Emergency Base Time"]         = UCIOption(200, 0, 30000);
   o["Emergency Move Time"]         = UCIOption(70, 0, 5000);
   o["Minimum Thinking Time"]       = UCIOption(20, 0, 5000);
   o["Emergency Base Time"]         = UCIOption(200, 0, 30000);
   o["Emergency Move Time"]         = UCIOption(70, 0, 5000);
   o["Minimum Thinking Time"]       = UCIOption(20, 0, 5000);