mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 06:17:49 +00:00
Stockfish 1.8 beta 1
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+2
-2
@@ -58,7 +58,7 @@ using namespace std;
|
|||||||
/// Version number. If this is left empty, the current date (in the format
|
/// Version number. If this is left empty, the current date (in the format
|
||||||
/// YYMMDD) is used as a version number.
|
/// 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 AppName = "Stockfish";
|
||||||
static const string AppTag = "";
|
static const string AppTag = "";
|
||||||
|
|
||||||
@@ -151,7 +151,7 @@ const string engine_name() {
|
|||||||
const string cpu64(CpuHas64BitPath ? " 64bit" : "");
|
const string cpu64(CpuHas64BitPath ? " 64bit" : "");
|
||||||
|
|
||||||
if (!EngineVersion.empty())
|
if (!EngineVersion.empty())
|
||||||
return AppName+ " " + EngineVersion + cpu64;
|
return AppName + " " + EngineVersion + cpu64;
|
||||||
|
|
||||||
string date(__DATE__); // From compiler, format is "Sep 21 2008"
|
string date(__DATE__); // From compiler, format is "Sep 21 2008"
|
||||||
string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
|
string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
|
||||||
|
|||||||
+1
-1
@@ -235,7 +235,7 @@ namespace {
|
|||||||
const Value EasyMoveMargin = Value(0x200);
|
const Value EasyMoveMargin = Value(0x200);
|
||||||
|
|
||||||
// Last seconds noise filtering (LSN)
|
// Last seconds noise filtering (LSN)
|
||||||
const bool UseLSNFiltering = true;
|
const bool UseLSNFiltering = false;
|
||||||
const int LSNTime = 100; // In milliseconds
|
const int LSNTime = 100; // In milliseconds
|
||||||
const Value LSNValue = value_from_centipawns(200);
|
const Value LSNValue = value_from_centipawns(200);
|
||||||
bool loseOnTime = false;
|
bool loseOnTime = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user