mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-22 12:47:08 +00:00
Double PawnHistory size and update formula
Doubling PAWN_HISTORY_SIZE to 1024. So with that, we can apply a stronger learning signal. The bonus/malus multipliers in the update_quiet_histories function have been increased accordingly. Passed STC: LLR: 2.97 (-2.94,2.94) <0.00,2.00> Total: 111008 W: 29136 L: 28708 D: 53164 Ptnml(0-2): 367, 12870, 28609, 13284, 374 https://tests.stockfishchess.org/tests/view/68c201d659efc3c96b61117e Passed LTC: LLR: 2.94 (-2.94,2.94) <0.50,2.50> Total: 117210 W: 30142 L: 29664 D: 57404 Ptnml(0-2): 49, 12532, 32970, 13000, 54 https://tests.stockfishchess.org/tests/view/68c20a6259efc3c96b6111ef closes https://github.com/official-stockfish/Stockfish/pull/6306 Bench: 2788334
This commit is contained in:
committed by
Joost VandeVondele
parent
a47a1c1804
commit
bbad001a49
+1
-1
@@ -1873,7 +1873,7 @@ void update_quiet_histories(
|
||||
|
||||
int pIndex = pawn_history_index(pos);
|
||||
workerThread.pawnHistory[pIndex][pos.moved_piece(move)][move.to_sq()]
|
||||
<< (bonus * (bonus > 0 ? 704 : 439) / 1024) + 70;
|
||||
<< (bonus * (bonus > 0 ? 800 : 500) / 1024) + 70;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user