X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=4a0302e51f9e7087d72892bdc23e84339ddef191;hp=13fb4b300936492657ee375d0d14c3e9bf460e46;hb=07e0741dfbca07097f38e46f3f7752b48675a515;hpb=76ed0ab5015f41715453a7efcedd57a7a5c962da diff --git a/src/search.cpp b/src/search.cpp index 13fb4b30..4a0302e5 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -921,7 +921,8 @@ moves_loop: // When in check search starts from here continue; // History based pruning - if ( depth <= 3 * ONE_PLY + if ( depth <= 4 * ONE_PLY + && move != ss->killers[0] && thisThread->history[pos.moved_piece(move)][to_sq(move)] < VALUE_ZERO && cmh[pos.moved_piece(move)][to_sq(move)] < VALUE_ZERO) continue;