X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=5205126aeba202ac2fb4663bcf9b9e5c4561cac5;hp=6aa1081f435e0cd666dc8ba3ba0dfcfdc2ebb245;hb=86347100a5c1113e9306d63a16cde2866839373b;hpb=431c3ac485386cc10413fc8a3c7d338dcc71602d diff --git a/src/search.cpp b/src/search.cpp index 6aa1081f..5205126a 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -569,6 +569,7 @@ namespace { TT.refresh(tte); ss->currentMove = ttMove; // Can be MOVE_NONE + // Update killers, history, and counter move on TT hit if ( ttValue >= beta && ttMove && !pos.capture_or_promotion(ttMove) @@ -576,6 +577,15 @@ namespace { { ss->killers[1] = ss->killers[0]; ss->killers[0] = ttMove; + + Value bonus = Value(int(depth) * int(depth)); + History.update(pos.moved_piece(ttMove), to_sq(ttMove), bonus); + + if (is_ok((ss-1)->currentMove)) + { + Square prevMoveSq = to_sq((ss-1)->currentMove); + Countermoves.update(pos.piece_on(prevMoveSq), prevMoveSq, ttMove); + } } return ttValue; } @@ -933,6 +943,13 @@ moves_loop: // When in check and at SpNode search starts from here value = -search(pos, ss+1, -(alpha+1), -alpha, d, true); + // Research at intermediate depth if reduction is very high + if (value > alpha && ss->reduction >= 4 * ONE_PLY) + { + Depth d2 = std::max(newDepth - 2 * ONE_PLY, ONE_PLY); + value = -search(pos, ss+1, -(alpha+1), -alpha, d2, true); + } + doFullDepthSearch = (value > alpha && ss->reduction != DEPTH_ZERO); ss->reduction = DEPTH_ZERO; }