X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=aa27ec2b02eec827a5bb7b5b7092d2043044d041;hp=325278fbc95acab4d559b94ae7a1787d2f8b0b9b;hb=c4c2e08f0d71c8e8f0bdfcb988a42b33243fd2ca;hpb=6e36860554c735775b93f7622806cea90f078480 diff --git a/src/search.cpp b/src/search.cpp index 325278fb..aa27ec2b 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -82,7 +82,7 @@ namespace { // History and stats update bonus, based on depth int stat_bonus(Depth depth) { int d = depth / ONE_PLY; - return d > 17 ? 0 : 32 * d * d + 64 * d - 64; + return d > 17 ? 0 : 33 * d * d + 66 * d - 66; } // Skill structure is used to implement strength limit