Skip to content

Commit

Permalink
Restore old aspiration window to 16
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mcostalba committed Mar 29, 2014
1 parent af0c13b commit f811a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Expand Up @@ -327,7 +327,7 @@ namespace {
// Reset aspiration window starting size
if (depth >= 5)
{
delta = Value(depth > 23 ? 16 : 12);
delta = Value(16);
alpha = std::max(RootMoves[PVIdx].prevScore - delta,-VALUE_INFINITE);
beta = std::min(RootMoves[PVIdx].prevScore + delta, VALUE_INFINITE);
}
Expand Down

0 comments on commit f811a56

Please sign in to comment.