Skip to content

Commit 4a0db9e

Browse files
SFisGODsnicolet
authored andcommitted
Combo
Combo of two parameter tweaks and tuned values for Queen and ThreatByKing. STC LLR: 2.95 (-2.94,2.94) [0.00,4.00] Total: 20180 W: 4439 L: 4198 D: 11543 http://tests.stockfishchess.org/tests/view/5bd7b8250ebc595e0ae22e97 LTC LLR: 2.95 (-2.94,2.94) [0.00,4.00] Total: 86312 W: 14106 L: 13685 D: 58521 http://tests.stockfishchess.org/tests/view/5bd803560ebc595e0ae23213 This combo consists of the following: Queen Value (tuned values) Iter: 72056, A: 5000, alpha 0.602000, gamma 0.101000, clipping old, rounding deterministic param: QueenValueMg, best: 2528.91, start: 2528.00 param: QueenValueEg, best: 2687.12, start: 2698.00 ThreatByKing (tuned values) Green STC (50.8k games) http://tests.stockfishchess.org/tests/view/5bd1d5a00ebc595e0ae1cbec LTC (I stopped this test at 71.2k games. It's likely yellow.) http://tests.stockfishchess.org/tests/view/5bd263e70ebc595e0ae1d77e WeakUnopposedPawn (tweak) by xoto (https://github.com/xoto10) Green STC (102.8k games) http://tests.stockfishchess.org/tests/view/5bd306bb0ebc595e0ae1e146 Yellow LTC (90.8k games) http://tests.stockfishchess.org/tests/view/5bd3ea660ebc595e0ae1f16b aspiTune1 (tweak) by vondele (https://github.com/vondele) Green STC (125.9k games) http://tests.stockfishchess.org/tests/view/5bd2ae100ebc595e0ae1dab0 Yellow LTC (107.9k games) http://tests.stockfishchess.org/tests/view/5bd3eb700ebc595e0ae1f16f Thank you @31m059 (Mark Tenzer) for helping me! Also, thank you very much for recognizing my efforts. I genuinely appreciate it. Bench: 3556672
1 parent 7a61368 commit 4a0db9e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/evaluate.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,13 @@ namespace {
167167
constexpr Score PawnlessFlank = S( 19, 84);
168168
constexpr Score RookOnPawn = S( 10, 30);
169169
constexpr Score SliderOnQueen = S( 42, 21);
170-
constexpr Score ThreatByKing = S( 23, 76);
170+
constexpr Score ThreatByKing = S( 22, 78);
171171
constexpr Score ThreatByPawnPush = S( 45, 40);
172172
constexpr Score ThreatByRank = S( 16, 3);
173173
constexpr Score ThreatBySafePawn = S(173,102);
174174
constexpr Score TrappedRook = S( 92, 0);
175175
constexpr Score WeakQueen = S( 50, 10);
176-
constexpr Score WeakUnopposedPawn = S( 5, 29);
176+
constexpr Score WeakUnopposedPawn = S( 15, 19);
177177

178178
#undef S
179179

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ void Thread::search() {
388388
if (rootDepth >= 5 * ONE_PLY)
389389
{
390390
Value previousScore = rootMoves[pvIdx].previousScore;
391-
delta = Value(18);
391+
delta = Value(20);
392392
alpha = std::max(previousScore - delta,-VALUE_INFINITE);
393393
beta = std::min(previousScore + delta, VALUE_INFINITE);
394394

src/types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ enum Value : int {
180180
KnightValueMg = 784, KnightValueEg = 868,
181181
BishopValueMg = 828, BishopValueEg = 916,
182182
RookValueMg = 1286, RookValueEg = 1378,
183-
QueenValueMg = 2528, QueenValueEg = 2698,
183+
QueenValueMg = 2529, QueenValueEg = 2687,
184184

185185
MidgameLimit = 15258, EndgameLimit = 3915
186186
};

0 commit comments

Comments
 (0)