mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 05:07:46 +00:00
Restore old aspiration window to 16
Tested directly at LTC because previous long test series on this topic shows it is TC dependant. Tested with no-regression mode because gets rid of an ugly and ad-hoc rule. Test at LTC: LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 67918 W: 10590 L: 10541 D: 46787 bench: 7926803
This commit is contained in:
+1
-1
@@ -327,7 +327,7 @@ namespace {
|
|||||||
// Reset aspiration window starting size
|
// Reset aspiration window starting size
|
||||||
if (depth >= 5)
|
if (depth >= 5)
|
||||||
{
|
{
|
||||||
delta = Value(depth > 23 ? 16 : 12);
|
delta = Value(16);
|
||||||
alpha = std::max(RootMoves[PVIdx].prevScore - delta,-VALUE_INFINITE);
|
alpha = std::max(RootMoves[PVIdx].prevScore - delta,-VALUE_INFINITE);
|
||||||
beta = std::min(RootMoves[PVIdx].prevScore + delta, VALUE_INFINITE);
|
beta = std::min(RootMoves[PVIdx].prevScore + delta, VALUE_INFINITE);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user