Skip to content

Commit

Permalink
Merge pull request #27 from SzilBalazs/iir-non-pv
Browse files Browse the repository at this point in the history
Disable IIR in pv nodes

STC:
ELO   | 9.17 +- 6.13 (95%)
SPRT  | 10.0+0.10s Threads=1 Hash=16MB
LLR   | 2.95 (-2.94, 2.94) [0.00, 5.00]
GAMES | N: 6936 W: 2041 L: 1858 D: 3037

LTC:
ELO   | 6.90 +- 4.97 (95%)
SPRT  | 60.0+0.60s Threads=1 Hash=256MB
LLR   | 2.99 (-2.94, 2.94) [0.00, 5.00]
GAMES | N: 9872 W: 2698 L: 2502 D: 4672

Bench: 2160633
  • Loading branch information
SzilBalazs authored Jul 28, 2023
2 parents 8df827d + 7fb85b8 commit 026e85f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/search_thread.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ namespace search {
if (root_node || in_check)
goto search_moves;

if (!entry && depth >= 5)
if (!entry && non_pv_node && depth >= 4)
depth--;

if (depth <= 3 && static_eval + 150 * depth <= alpha) {
Expand Down

0 comments on commit 026e85f

Please sign in to comment.