]> git.sesse.net Git - stockfish/blobdiff - src/history.h
Set HistoryMax infinitely high
[stockfish] / src / history.h
index 3fb74134466c272c08185476f918f558873e676c..ce87b7e137e03ba002636b5c47741a0df01db168 100644 (file)
@@ -70,8 +70,9 @@ private:
 /// the effect that parts of the search tree which have been searched
 /// recently have a bigger importance for move ordering than the moves which
 /// have been searched a long time ago.
+/// Current policy is to set this as high as possible, but avoid overflow.
 
-const int HistoryMax = 50000 * ONE_PLY;
+const int HistoryMax = (1 << 28);
 
 
 ////