mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +00:00
Fix comment
We always probe, but we do not prune at PV nodes. No functional change. Resolves #300
This commit is contained in:
+1
-1
@@ -585,7 +585,7 @@ namespace {
|
|||||||
ss->ttMove = ttMove = RootNode ? RootMoves[PVIdx].pv[0] : ttHit ? tte->move() : MOVE_NONE;
|
ss->ttMove = ttMove = RootNode ? RootMoves[PVIdx].pv[0] : ttHit ? tte->move() : MOVE_NONE;
|
||||||
ttValue = ttHit ? value_from_tt(tte->value(), ss->ply) : VALUE_NONE;
|
ttValue = ttHit ? value_from_tt(tte->value(), ss->ply) : VALUE_NONE;
|
||||||
|
|
||||||
// At non-PV nodes we check for a fail high/low. We don't probe at PV nodes
|
// At non-PV nodes we check for a fail high/low. We don't prune at PV nodes
|
||||||
if ( !PvNode
|
if ( !PvNode
|
||||||
&& ttHit
|
&& ttHit
|
||||||
&& tte->depth() >= depth
|
&& tte->depth() >= depth
|
||||||
|
|||||||
Reference in New Issue
Block a user