From: Fabian Fichter Date: Sat, 17 Jul 2021 19:44:32 +0000 (+0200) Subject: Merge official-stockfish/master X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=8b21461986148234809f1b898f75e30c72e329de;p=fairystockfish.git Merge official-stockfish/master bench: 4858668 --- 8b21461986148234809f1b898f75e30c72e329de diff --cc src/search.cpp index 69ab64f,6e1d2b5..0d408e2 --- a/src/search.cpp +++ b/src/search.cpp @@@ -1267,13 -1120,9 +1267,10 @@@ moves_loop: // When in check, search st // cases where we extend a son if it has good chances to be "interesting". if ( depth >= 3 && moveCount > 1 + 2 * rootNode + && !(pos.must_capture() && pos.has_capture()) && ( !captureOrPromotion - || moveCountPruning - || ss->staticEval + PieceValue[EG][pos.captured_piece()] <= alpha || cutNode - || (!PvNode && !formerPv && captureHistory[movedPiece][to_sq(move)][type_of(pos.captured_piece())] < 3678) - || thisThread->ttHitAverage < 432 * TtHitAverageResolution * TtHitAverageWindow / 1024) + || (!PvNode && !formerPv)) && (!PvNode || ss->ply > 1 || thisThread->id() % 4 != 3)) { Depth r = reduction(improving, depth, moveCount);