mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-23 10:36:26 +08:00
Fix lower/upper bounds output
Commit cb0c7a9848 doesnt reset the lower/upper bounds back to false.
fixes #4273
closes https://github.com/official-stockfish/Stockfish/pull/4274
No functional change
This commit is contained in:
committed by
Joost VandeVondele
parent
3a30b478d2
commit
8f817ef082
@@ -1250,6 +1250,8 @@ moves_loop: // When in check, search starts here
|
||||
{
|
||||
rm.score = rm.uciScore = value;
|
||||
rm.selDepth = thisThread->selDepth;
|
||||
rm.scoreLowerbound = rm.scoreUpperbound = false;
|
||||
|
||||
if (value >= beta) {
|
||||
rm.scoreLowerbound = true;
|
||||
rm.uciScore = beta;
|
||||
|
||||
Reference in New Issue
Block a user