X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fsearch.cpp;h=05773469c64220ca2d201c151504c5446e379f8b;hb=698b645e10388366ca0400bc05c21af98b7703b2;hp=ccf3b56d65b34199f74f7a8f22348035bacf4e52;hpb=aab5863dd42da0a8e493a2ffaca96319b3d19ebb;p=stockfish diff --git a/src/search.cpp b/src/search.cpp index ccf3b56d..05773469 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -327,7 +327,7 @@ namespace { // Reset aspiration window starting size if (depth >= 5) { - delta = Value(depth > 23 ? 16 : 12); + delta = Value(16); alpha = std::max(RootMoves[PVIdx].prevScore - delta,-VALUE_INFINITE); beta = std::min(RootMoves[PVIdx].prevScore + delta, VALUE_INFINITE); } @@ -534,7 +534,6 @@ namespace { : ttValue >= beta ? (tte->bound() & BOUND_LOWER) : (tte->bound() & BOUND_UPPER))) { - TT.refresh(tte); ss->currentMove = ttMove; // Can be MOVE_NONE // If ttMove is quiet, update killers, history, counter move and followup move on TT hit