mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-18 16:16:23 +08:00
Increase earlier aspiration window size
bench: 4377851
This commit is contained in:
@@ -364,6 +364,8 @@ namespace {
|
||||
if (Signals.stop)
|
||||
return;
|
||||
|
||||
delta += delta / 2;
|
||||
|
||||
// In case of failing low/high increase aspiration window and
|
||||
// research, otherwise exit the loop.
|
||||
if (bestValue <= alpha)
|
||||
@@ -379,8 +381,6 @@ namespace {
|
||||
else
|
||||
break;
|
||||
|
||||
delta += delta / 2;
|
||||
|
||||
assert(alpha >= -VALUE_INFINITE && beta <= VALUE_INFINITE);
|
||||
|
||||
// Give some update (without cluttering the UI) before to research
|
||||
|
||||
Reference in New Issue
Block a user