]> git.sesse.net Git - stockfish/commitdiff
Stockfish 1.7
authorMarco Costalba <mcostalba@gmail.com>
Wed, 7 Apr 2010 11:08:50 +0000 (13:08 +0200)
committerMarco Costalba <mcostalba@gmail.com>
Wed, 7 Apr 2010 11:08:50 +0000 (13:08 +0200)
Signatures are:

./stockfish bench 128 1 12 default depth
8299338

./stockfish bench 128 1 13 default depth
15694903

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

index 89a2f5ee2e21e183d8c2ff7a715b7e0208574465..d0616ca1865dc08d161f433b891f67ca1a6a9fb1 100644 (file)
@@ -54,7 +54,7 @@ using namespace std;
 /// Version number. If this is left empty, the current date (in the format
 /// YYMMDD) is used as a version number.
 
-static const string EngineVersion = "";
+static const string EngineVersion = "1.7";
 static const string AppName = "Stockfish";
 static const string AppTag  = "";
 
index 94c03619a39e8c818739316096f1acfc87b08574..5ea75fecfbd98d40cb084f20600f77612b6a891c 100644 (file)
@@ -232,7 +232,7 @@ namespace {
   const Value EasyMoveMargin = Value(0x200);
 
   // Last seconds noise filtering (LSN)
-  const bool UseLSNFiltering = true;
+  const bool UseLSNFiltering = false;
   const int LSNTime = 4000; // In milliseconds
   const Value LSNValue = value_from_centipawns(200);
   bool loseOnTime = false;