mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 17:46:26 +08:00
Retire asymmThreshold
Verified with 40K games at long TC does not regress: ELO: 1.74 +-1.9 (95%) LOS: 96.2% Total: 39624 W: 6402 L: 6203 D: 27019 bench: 7762310
This commit is contained in:
@@ -1220,10 +1220,7 @@ moves_loop: // When in check and at SpNode search starts from here
|
||||
continue;
|
||||
}
|
||||
|
||||
// Prune moves with negative or equal SEE and also moves with positive
|
||||
// SEE where capturing piece loses a tempo and SEE < beta - futilityBase.
|
||||
if ( futilityBase < beta
|
||||
&& pos.see(move, beta - futilityBase) <= 0)
|
||||
if (futilityBase < beta && pos.see(move) <= 0)
|
||||
{
|
||||
bestValue = std::max(bestValue, futilityBase);
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user