From: Marco Costalba Date: Wed, 7 Apr 2010 11:08:50 +0000 (+0200) Subject: Stockfish 1.7 X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=a7fcdfd6bff8baa6278306dd9e4fa72d053bb8c9 Stockfish 1.7 Signatures are: ./stockfish bench 128 1 12 default depth 8299338 ./stockfish bench 128 1 13 default depth 15694903 Signed-off-by: Marco Costalba --- diff --git a/src/misc.cpp b/src/misc.cpp index 89a2f5ee..d0616ca1 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -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 = ""; diff --git a/src/search.cpp b/src/search.cpp index 94c03619..5ea75fec 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -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;