Skip to content

Commit

Permalink
Allow null pruning at depth 1
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ajithcj authored and mcostalba committed Jul 24, 2016
1 parent 714329d commit f2f3a06
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,6 @@ namespace {

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

0 comments on commit f2f3a06

Please sign in to comment.