mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-23 02:27:00 +08:00
Tweak stat bonus
Increase stat bonus by 1/32 and adjust the divisor of main and capture history tables to 10692. STC: LLR: 2.96 (-2.94,2.94) [0.00,4.00] Total: 28437 W: 6444 L: 6166 D: 15827 http://tests.stockfishchess.org/tests/view/5b579b4d0ebc5902bdb87139 LTC: LLR: 2.96 (-2.94,2.94) [0.00,4.00] Total: 111204 W: 19160 L: 18644 D: 73400 http://tests.stockfishchess.org/tests/view/5b57a7c60ebc5902bdb872d3 Closes https://github.com/official-stockfish/Stockfish/pull/1698 Bench: 4778882
This commit is contained in:
committed by
Stéphane Nicolet
parent
6e36860554
commit
c4c2e08f0d
@@ -82,7 +82,7 @@ namespace {
|
||||
// History and stats update bonus, based on depth
|
||||
int stat_bonus(Depth depth) {
|
||||
int d = depth / ONE_PLY;
|
||||
return d > 17 ? 0 : 32 * d * d + 64 * d - 64;
|
||||
return d > 17 ? 0 : 33 * d * d + 66 * d - 66;
|
||||
}
|
||||
|
||||
// Skill structure is used to implement strength limit
|
||||
|
||||
Reference in New Issue
Block a user