1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 08:43:09 +00:00

Revert "Increase earlier aspiration window size"

This reverts commit b88bc7b766.
This commit is contained in:
Marco Costalba 2013-07-02 07:25:39 +02:00
parent b88bc7b766
commit 13ffb08136

View file

@ -364,8 +364,6 @@ namespace {
if (Signals.stop) if (Signals.stop)
return; return;
delta += delta / 2;
// In case of failing low/high increase aspiration window and // In case of failing low/high increase aspiration window and
// research, otherwise exit the loop. // research, otherwise exit the loop.
if (bestValue <= alpha) if (bestValue <= alpha)
@ -381,6 +379,8 @@ namespace {
else else
break; break;
delta += delta / 2;
assert(alpha >= -VALUE_INFINITE && beta <= VALUE_INFINITE); assert(alpha >= -VALUE_INFINITE && beta <= VALUE_INFINITE);
// Give some update (without cluttering the UI) before to research // Give some update (without cluttering the UI) before to research