diff --git a/src/search.cpp b/src/search.cpp index 9386bfb35..595fcbb48 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1043,7 +1043,7 @@ Value Search::Worker::search( assert(probCutBeta < VALUE_INFINITE && probCutBeta > beta); MovePicker mp(pos, ttData.move, probCutBeta - ss->staticEval, &captureHistory); - Depth probCutDepth = depth - 4; + Depth probCutDepth = depth - 4 - improving; while ((move = mp.next_move()) != Move::none()) {