From 726df58131dd6e6c54a53fa9e0fe0756bcfc203b Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Thu, 24 Jun 2010 17:56:45 +0100 Subject: [PATCH] Stockfish 1.8 beta 1 Signed-off-by: Marco Costalba --- src/misc.cpp | 4 ++-- src/search.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/misc.cpp b/src/misc.cpp index 7ed4b443..d8b5b35d 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -58,7 +58,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.8 beta 1"; static const string AppName = "Stockfish"; static const string AppTag = ""; @@ -151,7 +151,7 @@ const string engine_name() { const string cpu64(CpuHas64BitPath ? " 64bit" : ""); if (!EngineVersion.empty()) - return AppName+ " " + EngineVersion + cpu64; + return AppName + " " + EngineVersion + cpu64; string date(__DATE__); // From compiler, format is "Sep 21 2008" string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec"); diff --git a/src/search.cpp b/src/search.cpp index a97d3e02..4f8401bb 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -235,7 +235,7 @@ namespace { const Value EasyMoveMargin = Value(0x200); // Last seconds noise filtering (LSN) - const bool UseLSNFiltering = true; + const bool UseLSNFiltering = false; const int LSNTime = 100; // In milliseconds const Value LSNValue = value_from_centipawns(200); bool loseOnTime = false; -- 2.39.2