mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-22 12:47:08 +00:00
Simplify improving term
Set improving whenever ss->staticEval >= beta Passed simplification STC LLR: 2.94 (-2.94,2.94) <-1.75,0.25> Total: 38016 W: 10122 L: 9900 D: 17994 Ptnml(0-2): 143, 4388, 9747, 4564, 166 https://tests.stockfishchess.org/tests/view/688803917b562f5f7b7322eb Passed simplification LTC LLR: 2.95 (-2.94,2.94) <-1.75,0.25> Total: 21648 W: 5594 L: 5375 D: 10679 Ptnml(0-2): 12, 2241, 6096, 2466, 9 https://tests.stockfishchess.org/tests/view/688820397b562f5f7b73235d closes https://github.com/official-stockfish/Stockfish/pull/6198 Bench: 3576884
This commit is contained in:
committed by
Joost VandeVondele
parent
57b32f3e60
commit
cd52859bd5
+1
-1
@@ -896,7 +896,7 @@ Value Search::Worker::search(
|
||||
}
|
||||
}
|
||||
|
||||
improving |= ss->staticEval >= beta + 94 * !PvNode;
|
||||
improving |= ss->staticEval >= beta;
|
||||
|
||||
// Step 10. Internal iterative reductions
|
||||
// At sufficient depth, reduce depth for PV/Cut nodes without a TTMove.
|
||||
|
||||
Reference in New Issue
Block a user