X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fhistory.h;h=ddab6cd09f442b57e139d3e2e146c35711c75cc8;hp=5c394cc8f17e2ed75f043ba01b0251e607127222;hb=78246035499e277a7099b73bb96ac1e115643d61;hpb=0f39e5c4ff0805b6aeed74aed75cc58eed1bf240 diff --git a/src/history.h b/src/history.h index 5c394cc8..ddab6cd0 100644 --- a/src/history.h +++ b/src/history.h @@ -61,13 +61,13 @@ private: /// HistoryMax controls how often the history counters will be scaled down: /// When the history score for a move gets bigger than HistoryMax, all -/// entries in the table are divided by 4. It is difficult to guess what +/// entries in the table are divided by 2. It is difficult to guess what /// the ideal value of this constant is. Scaling down the scores often has /// 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. -const int HistoryMax = 25000 * OnePly; +const int HistoryMax = 50000 * OnePly; #endif // !defined(HISTORY_H_INCLUDED)