]> git.sesse.net Git - stockfish/commitdiff
Stockfish 1.8 beta 1
authorMarco Costalba <mcostalba@gmail.com>
Thu, 24 Jun 2010 16:56:45 +0000 (17:56 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Thu, 24 Jun 2010 17:00:14 +0000 (18:00 +0100)
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/misc.cpp
src/search.cpp

index 7ed4b443370ac5bf359deb13799fe679bbb22309..d8b5b35d83fb93a5cbea8962ec7927d6e88cf4ce 100644 (file)
@@ -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");
index a97d3e025b070922448486522a7c1068d68d2d44..4f8401bbb651ea62cbc5761d8a0b91614f31f3bd 100644 (file)
@@ -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;