]> git.sesse.net Git - stockfish/commitdiff
Tuned razor and futility margins
authorlantonov <lantonov.here@gmail.com>
Mon, 9 Dec 2019 18:50:47 +0000 (20:50 +0200)
committerStéphane Nicolet <cassio@free.fr>
Tue, 10 Dec 2019 00:10:19 +0000 (01:10 +0100)
Tuning was done with Bayesian optimisation with the following parameters:
Acquisition function: Expected Improvement
alpha: 0.05
xi: 1e-4
TC: 60+0.6
Number of iterations: 100
Initial points: 5
Batch size: 20 games

STC
http://tests.stockfishchess.org/tests/view/5dee291e3cff9a249bb9e470
LLR: 2.97 (-2.94,2.94) [-1.50,4.50]
Total: 19586 W: 4382 L: 4214 D: 10990

LTC
http://tests.stockfishchess.org/tests/view/5dee4e273cff9a249bb9e473
LLR: 2.95 (-2.94,2.94) [0.00,3.50]
Total: 38840 W: 6315 L: 6036 D: 26489

Bench: 5033242

src/search.cpp

index 21c36f5090bfadbbc073c0939702238468cf6601..c856980b4249fb8302b3990b5a02b14b0c743bea 100644 (file)
@@ -65,9 +65,9 @@ namespace {
   constexpr uint64_t ttHitAverageResolution = 1024;
 
   // Razor and futility margins
-  constexpr int RazorMargin = 661;
+  constexpr int RazorMargin = 594;
   Value futility_margin(Depth d, bool improving) {
-    return Value(198 * (d - improving));
+    return Value(232 * (d - improving));
   }
 
   // Reductions lookup table, initialized at startup