We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d197b commit 2ead74dCopy full SHA for 2ead74d
src/search.cpp
@@ -603,7 +603,7 @@ namespace {
603
ttValue = ttHit ? value_from_tt(tte->value(), ss->ply) : VALUE_NONE;
604
ttMove = rootNode ? thisThread->rootMoves[thisThread->pvIdx].pv[0]
605
: ttHit ? tte->move() : MOVE_NONE;
606
- ttPv = (ttHit && tte->is_pv()) || (PvNode && depth > 4 * ONE_PLY);
+ ttPv = PvNode || (ttHit && tte->is_pv());
607
608
// At non-PV nodes we check for an early TT cutoff
609
if ( !PvNode
0 commit comments