mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
On IID do not always search with cutNode = true
On IID now search with cutNode value instead of fixed value true. STC (http://tests.stockfishchess.org/tests/view/575fa3860ebc5972faa15f67): LLR: 2.96 (-2.94,2.94) [-3.00,1.00] Total: 163974 W: 30744 L: 30874 D: 102356 LTC (http://tests.stockfishchess.org/tests/view/5763b0640ebc5972faa16075): LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 48363 W: 6611 L: 6528 D: 35224 Bench: 7806393
This commit is contained in:
parent
1c0c4db677
commit
6d58bf777c
1 changed files with 1 additions and 1 deletions
|
@ -805,7 +805,7 @@ namespace {
|
|||
{
|
||||
Depth d = depth - 2 * ONE_PLY - (PvNode ? DEPTH_ZERO : depth / 4);
|
||||
ss->skipEarlyPruning = true;
|
||||
search<NT>(pos, ss, alpha, beta, d, true);
|
||||
search<NT>(pos, ss, alpha, beta, d, cutNode);
|
||||
ss->skipEarlyPruning = false;
|
||||
|
||||
tte = TT.probe(posKey, ttHit);
|
||||
|
|
Loading…
Add table
Reference in a new issue