Skip to content

Commit 67f13cc

Browse files
committed
Restest official-stockfish#1768 with restriction to singlethread
bench: 3314347
1 parent 37a5bf9 commit 67f13cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/search.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,8 @@ void Thread::search() {
447447
else if (bestValue >= beta)
448448
{
449449
beta = std::min(bestValue + delta, VALUE_INFINITE);
450-
++failedHighCnt;
450+
if (mainThread)
451+
++failedHighCnt;
451452
}
452453
else
453454
break;

0 commit comments

Comments
 (0)