Skip to content

Commit fd5e779

Browse files
xoto10vondele
authored andcommitted
Update 2 search parameters after tune.
A tuning run on 3 search parameters was done with 200k games, narrow ranges (50-150%) and a small value for A (3% of total games) : https://tests.stockfishchess.org/tests/view/613b5f4b689039fce12e1220 STC 10+0.1 : LLR: 2.95 (-2.94,2.94) <-0.50,2.50> Total: 73112 W: 18800 L: 18520 D: 35792 Ptnml(0-2): 205, 8395, 19115, 8597, 244 https://tests.stockfishchess.org/tests/view/613cb8d2689039fce12e1308 LTC 60+0.6 : LLR: 2.95 (-2.94,2.94) <0.50,3.50> Total: 45616 W: 11604 L: 11321 D: 22691 Ptnml(0-2): 24, 4769, 12946, 5038, 31 https://tests.stockfishchess.org/tests/view/613d07048253e53e97b55b32 closes #3698 Bench 6504816
1 parent 30fdbf4 commit fd5e779

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/search.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ namespace {
793793
&& (ss-1)->statScore < 23767
794794
&& eval >= beta
795795
&& eval >= ss->staticEval
796-
&& ss->staticEval >= beta - 20 * depth - 22 * improving + 168 * ss->ttPv + 159
796+
&& ss->staticEval >= beta - 20 * depth - 22 * improving + 168 * ss->ttPv + 177
797797
&& !excludedMove
798798
&& pos.non_pawn_material(us)
799799
&& (ss->ply >= thisThread->nmpMinPly || us != thisThread->nmpColor))
@@ -1032,7 +1032,7 @@ namespace {
10321032
// Futility pruning: parent node (~5 Elo)
10331033
if ( !ss->inCheck
10341034
&& lmrDepth < 7
1035-
&& ss->staticEval + 174 + 157 * lmrDepth <= alpha)
1035+
&& ss->staticEval + 172 + 157 * lmrDepth <= alpha)
10361036
continue;
10371037

10381038
// Prune moves with negative SEE (~20 Elo)
@@ -1101,8 +1101,8 @@ namespace {
11011101
}
11021102

11031103
// Capture extensions for PvNodes and cutNodes
1104-
else if ( (PvNode || cutNode)
1105-
&& captureOrPromotion
1104+
else if ( (PvNode || cutNode)
1105+
&& captureOrPromotion
11061106
&& moveCount != 1)
11071107
extension = 1;
11081108

0 commit comments

Comments
 (0)