X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fhistory.h;h=ddab6cd09f442b57e139d3e2e146c35711c75cc8;hp=5c394cc8f17e2ed75f043ba01b0251e607127222;hb=cfe59de27ddc42ac555187ae68879f2bc7bd7936;hpb=c12364bb67741daff123c50770b1fd6923fa9530 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)