Skip to content

Commit 5eb21bb

Browse files
daniel-monroePikaCat-OuO
authored andcommitted
reduce depth by 5 in probcut
1 parent b0e051e commit 5eb21bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ Value Search::Worker::search(
821821
assert(probCutBeta < VALUE_INFINITE && probCutBeta > beta);
822822

823823
MovePicker mp(pos, ttData.move, probCutBeta - ss->staticEval, &thisThread->captureHistory);
824-
Depth probCutDepth = std::max(depth - (4 + cutNode), 0);
824+
Depth probCutDepth = std::max(depth - 5, 0);
825825

826826
while ((move = mp.next_move()) != Move::none())
827827
{

0 commit comments

Comments
 (0)