X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=d59edbaeefcbf4be8ba40ea965156a21e0bf387a;hp=aafe82a91b942240ee95f6facc1d96295bff3415;hb=2c237da54647bb7526f3512bea183eb44919cdda;hpb=b73016bb41d4c2fad3126b2e0018d71a36e78331;ds=sidebyside diff --git a/src/search.cpp b/src/search.cpp index aafe82a9..d59edbae 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -85,7 +85,7 @@ namespace { // History and stats update bonus, based on depth int stat_bonus(Depth depth) { - int d = depth / ONE_PLY ; + int d = depth / ONE_PLY; return d > 17 ? 0 : d * d + 2 * d - 2; }