Skip to content

Commit f2f3a06

Browse files
ajithcjmcostalba
authored andcommitted
Allow null pruning at depth 1
This removes a check that prevents null pruning at depth 1 PLY. STC: LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 23445 W: 4638 L: 4521 D: 14286 LTC: LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 61416 W: 8627 L: 8563 D: 44226 bench: 8145304
1 parent 714329d commit f2f3a06

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/search.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,6 @@ namespace {
729729

730730
// Step 8. Null move search with verification search (is omitted in PV nodes)
731731
if ( !PvNode
732-
&& depth >= 2 * ONE_PLY
733732
&& eval >= beta
734733
&& (ss->staticEval >= beta - 35 * (depth / ONE_PLY - 6) || depth >= 13 * ONE_PLY)
735734
&& pos.non_pawn_material(pos.side_to_move()))

0 commit comments

Comments
 (0)