1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-07-11 19:49:14 +00:00

Remove static eval threshold for extensions when giving check

Passed non-regression STC:
https://tests.stockfishchess.org/tests/view/647685d54a36543c4c9f4f2a
LLR: 2.93 (-2.94,2.94) <-1.75,0.25>
Total: 114688 W: 30701 L: 30571 D: 53416
Ptnml(0-2): 336, 12708, 31136, 12818, 346

Passed non-regression LTC:
https://tests.stockfishchess.org/tests/view/64774b02b81f005b572de770
LLR: 2.94 (-2.94,2.94) <-1.75,0.25>
Total: 107310 W: 28920 L: 28796 D: 49594
Ptnml(0-2): 33, 10427, 32621, 10531, 43

closes https://github.com/official-stockfish/Stockfish/pull/4599

bench 2597974
This commit is contained in:
Linmiao Xu 2023-05-30 18:24:54 -04:00 committed by Joost VandeVondele
parent 5930c0defb
commit ced0311890

View file

@ -1085,7 +1085,8 @@ moves_loop: // When in check, search starts here
}
// Check extensions (~1 Elo)
else if ( givesCheck && depth > 8)
else if ( givesCheck
&& depth > 9)
extension = 1;
// Quiet ttMove extensions (~1 Elo)