mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00: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:
parent
3fda064a66
commit
b73ae56ee1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue