Skip to content

Commit 2c86ae1

Browse files
vondelesnicolet
authored andcommitted
Adjust ButterflyHistory decay parameter
passed STC: LLR: 2.98 (-2.94,2.94) <-0.50,2.50> Total: 26680 W: 6807 L: 6593 D: 13280 Ptnml(0-2): 73, 3007, 6989, 3175, 96 https://tests.stockfishchess.org/tests/view/6174094e6ce927be32558441 passed LTC: LLR: 2.98 (-2.94,2.94) <0.50,3.50> Total: 21104 W: 5403 L: 5185 D: 10516 Ptnml(0-2): 8, 2160, 6001, 2372, 11 https://tests.stockfishchess.org/tests/view/61744927351812fe5f969864 closes #3761 Bench: 6334068
1 parent 8557f35 commit 2c86ae1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/movepick.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ enum StatsType { NoCaptures, Captures };
8686
/// unsuccessful during the current search, and is used for reduction and move
8787
/// ordering decisions. It uses 2 tables (one for each color) indexed by
8888
/// the move's from and to squares, see www.chessprogramming.org/Butterfly_Boards
89-
typedef Stats<int16_t, 13365, COLOR_NB, int(SQUARE_NB) * int(SQUARE_NB)> ButterflyHistory;
89+
typedef Stats<int16_t, 14365, COLOR_NB, int(SQUARE_NB) * int(SQUARE_NB)> ButterflyHistory;
9090

9191
/// At higher depths LowPlyHistory records successful quiet moves near the root
9292
/// and quiet moves which are/were in the PV (ttPv). LowPlyHistory is populated during

0 commit comments

Comments
 (0)