diff --git a/src/search.cpp b/src/search.cpp index cfd3583bc..1b5a2bbbc 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1271,11 +1271,9 @@ moves_loop: // When in check, search starts here if (!ttData.move) r += 1128; - r -= ttMoveHistory / 8; - // Note that if expected reduction is high, we reduce search depth here value = -search(pos, ss + 1, -(alpha + 1), -alpha, - newDepth - (r > 3564) - (r > 4969 && newDepth > 2), !cutNode); + newDepth - (r > 3200) - (r > 4600 && newDepth > 2), !cutNode); } // For PV nodes only, do a full PV search on the first move or after a fail high,