]> git.sesse.net Git - stockfish/blobdiff - src/misc.h
Revert "Implement a fallback system when aspiration search fails low and we are out...
[stockfish] / src / misc.h
index c83f36db37ffa82b683992b9855672c2c378a15d..a496d88eef9d51c69861ad0ba6c850f211dc8eb2 100644 (file)
@@ -38,7 +38,7 @@
 /// Version number.  If this is left empty, the current date (in the format
 /// YYMMDD) is used as a version number.
 
-const std::string EngineVersion = "1.2";
+const std::string EngineVersion = "";
 
 
 ////
@@ -47,6 +47,7 @@ const std::string EngineVersion = "1.2";
 
 #define Min(x, y) (((x) < (y))? (x) : (y))
 #define Max(x, y) (((x) < (y))? (y) : (x))
+#define Abs(a) (((a) < 0) ? -(a) : (a))
 
 
 ////