mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-26 12:06:22 +08:00
Double HistoryMax and reduce aging
After history accounting rewrite in 1.6, a small tweak of history parameters seems positive. Note that these are not to be considered the optimal values, just a wild guess that proved good. Finding the optimal values would require a much longer testing time. After 967 games at 1+0 Mod vs Orig 240 529 198 +15 ELO Functionality Signature: 21222553 Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -61,7 +61,7 @@ void History::success(Piece p, Square to, Depth d) {
|
||||
if (history[p][to] >= HistoryMax)
|
||||
for (int i = 0; i < 16; i++)
|
||||
for (int j = 0; j < 64; j++)
|
||||
history[i][j] /= 4;
|
||||
history[i][j] /= 2;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user