mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 08:36:33 +08:00
Increase earlier aspiration window size
bench: 4377851
This commit is contained in:
@@ -364,6 +364,8 @@ 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)
|
||||||
@@ -379,8 +381,6 @@ 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
|
||||||
|
|||||||
Reference in New Issue
Block a user