]> git.sesse.net Git - stockfish/commitdiff
Passed pawn tuning
authorjundery <jundery@gmail.com>
Thu, 30 May 2013 03:07:24 +0000 (21:07 -0600)
committerMarco Costalba <mcostalba@gmail.com>
Fri, 31 May 2013 07:17:48 +0000 (09:17 +0200)
A small number of tests with simulated
annealing at 15s indicated these values
may be better

And this is verified at long 60+0.05 TC
LLR: 2.95 (-2.94,2.94)
Total: 40658 W: 7821 L: 7501 D: 25336

bench: 4931544

src/evaluate.cpp

index 4b1862dbcef3f2c78a0b31ad660bfbf8cdbfffee..b379b40bdc4db9867376a71a27b4a42dc96dd92e 100644 (file)
@@ -834,8 +834,8 @@ Value do_evaluate(const Position& pos, Value& margin) {
         int rr = r * (r - 1);
 
         // Base bonus based on rank
-        Value mbonus = Value(20 * rr);
-        Value ebonus = Value(10 * (rr + r + 1));
+        Value mbonus = Value(17 * rr);
+        Value ebonus = Value(7 * (rr + r + 1));
 
         if (rr)
         {