Skip to content

Commit 5688b18

Browse files
cj5716vondele
authored andcommittedJun 5, 2024·
Simplify evaluation constants
Passed STC (<0, 2> by accident): LLR: 2.95 (-2.94,2.94) <0.00,2.00> Total: 346016 W: 89529 L: 88756 D: 167731 Ptnml(0-2): 1012, 41074, 88027, 41919, 976 https://tests.stockfishchess.org/tests/view/6659d6ecf426908fcc6b6929 Passed LTC: LLR: 2.96 (-2.94,2.94) <-1.75,0.25> Total: 89862 W: 22887 L: 22734 D: 44241 Ptnml(0-2): 45, 9999, 24694, 10144, 49 https://tests.stockfishchess.org/tests/view/665a6ebb062b2c3cf814fde8 Passed LTC (Rebased): LLR: 2.94 (-2.94,2.94) <-1.75,0.25> Total: 325500 W: 82734 L: 82826 D: 159940 Ptnml(0-2): 193, 36409, 89665, 36263, 220 https://tests.stockfishchess.org/tests/view/665bd39f44e8416a9cdc1909 closes #5361 Bench 961982
1 parent fb18caa commit 5688b18

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎src/evaluate.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,8 @@ Value Eval::evaluate(const Eval::NNUE::Networks& networks,
8383
optimism += optimism * nnueComplexity / 470;
8484
nnue -= nnue * nnueComplexity / 20000;
8585

86-
int material = 300 * pos.count<PAWN>() + 350 * pos.count<KNIGHT>() + 400 * pos.count<BISHOP>()
87-
+ 640 * pos.count<ROOK>() + 1200 * pos.count<QUEEN>();
88-
89-
v = (nnue * (34300 + material) + optimism * (4400 + material)) / 36672;
86+
int material = 600 * pos.count<PAWN>() + pos.non_pawn_material();
87+
v = (nnue * (68600 + material) + optimism * (8800 + material)) / 73344;
9088

9189
// Damp down the evaluation linearly when shuffling
9290
v -= v * pos.rule50_count() / 212;

0 commit comments

Comments
 (0)
Please sign in to comment.