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:
parent
b88bc7b766
commit
13ffb08136
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue