mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 01:27:16 +08:00
Tune null search reduction
STC LLR: 2.96 (-2.94,2.94) [-0.50,4.50] Total: 107289 W: 21851 L: 21325 D: 64113 LTC LLR: 2.96 (-2.94,2.94) [0.00,5.00] Total: 83837 W: 14378 L: 13916 D: 55543 Bench: 7604776 Resolves #194
This commit is contained in:
@@ -650,7 +650,7 @@ namespace {
|
||||
assert(eval - beta >= 0);
|
||||
|
||||
// Null move dynamic reduction based on depth and value
|
||||
Depth R = (3 + depth / 4 + std::min((eval - beta) / PawnValueMg, 3)) * ONE_PLY;
|
||||
Depth R = ((823 + 67 * depth) / 256 + std::min((eval - beta) / PawnValueMg, 3)) * ONE_PLY;
|
||||
|
||||
pos.do_null_move(st);
|
||||
(ss+1)->skipEarlyPruning = true;
|
||||
|
||||
Reference in New Issue
Block a user