X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=d08f698f531792aee62002abea194442f36aff30;hp=295ef63ea24d1c9645b26aa694b5be0c353e7f8c;hb=4d70e3aeac9ead1068feb73ed74c6bd1388b24bf;hpb=24b7ad54c747ef38818484567624696fe3ef5e9e diff --git a/src/search.cpp b/src/search.cpp index 295ef63e..d08f698f 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1333,7 +1333,7 @@ namespace { && !move_is_killer(move, ss[ply])) { // LMR dynamic reduction - Depth R = (moveCount >= 3 * LMRNonPVMoves && depth >= 7*OnePly ? 2*OnePly : OnePly); + Depth R = (moveCount >= 2 * LMRNonPVMoves && depth > 7*OnePly ? 2*OnePly : OnePly); ss[ply].reduction = R; value = -search(pos, ss, -(beta-1), newDepth-R, ply+1, true, threadID);