X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=e7c4e6ca2c04d4d1b9008125dfacc68633b1e103;hp=f18f2f2f65035a9c3740d92b551707e4030e8bfd;hb=17ef886fc32013fd5159484b8f9e547a5d183d59;hpb=8590a6f3b7157a21d97ba46285b7daec4e55fa3c diff --git a/src/search.cpp b/src/search.cpp index f18f2f2f..e7c4e6ca 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1199,7 +1199,7 @@ namespace { StateInfo st; pos.do_null_move(st); - int R = (depth >= 4 * OnePly ? 4 : 3); // Null move dynamic reduction + int R = (depth >= 5 * OnePly ? 4 : 3); // Null move dynamic reduction Value nullValue = -search(pos, ss, -(beta-1), depth-R*OnePly, ply+1, false, threadID);