mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 17:16:33 +08:00
Always extend full ply in PV
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
committed by
Marco Costalba
parent
58452de86d
commit
8b3fdec7ec
@@ -1154,7 +1154,7 @@ namespace {
|
|||||||
{
|
{
|
||||||
Value excValue = search(pos, ss, ttValue - OnlyMoveMargin, Max(Min(depth / 2, depth - 4 * OnePly), OnePly), ply, false, threadID, tte->move());
|
Value excValue = search(pos, ss, ttValue - OnlyMoveMargin, Max(Min(depth / 2, depth - 4 * OnePly), OnePly), ply, false, threadID, tte->move());
|
||||||
if (excValue < ttValue - OnlyMoveMargin)
|
if (excValue < ttValue - OnlyMoveMargin)
|
||||||
ext = (depth >= 8 * OnePly)? OnePly : ext + OnePly / 2;
|
ext = OnePly;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user