]> git.sesse.net Git - stockfish/blobdiff - src/misc.h
Dynamic aspiration search without research.
[stockfish] / src / misc.h
index 9bdcc633289236f0376d1908f097ecd6dc6ddfef..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.1a";
+const std::string EngineVersion = "";
 
 
 ////
@@ -47,6 +47,7 @@ const std::string EngineVersion = "1.1a";
 
 #define Min(x, y) (((x) < (y))? (x) : (y))
 #define Max(x, y) (((x) < (y))? (y) : (x))
+#define Abs(a) (((a) < 0) ? -(a) : (a))
 
 
 ////