X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.cpp;h=bf33a136b6f8364ead77831d46e399ae4c0837f5;hb=b8930d0c267d9d01ea1f854122e663c34bf5fce2;hp=a1e1cea5c9c6a948977728575ee1ddb638e8a01c;hpb=4fc773454759081c2cd921e460d542f2dfd4aa24;p=stockfish diff --git a/src/search.cpp b/src/search.cpp index a1e1cea5..bf33a136 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1156,8 +1156,7 @@ split_point_start: // At split points actual search starts from here ttDepth = InCheck || depth >= DEPTH_QS_CHECKS ? DEPTH_QS_CHECKS : DEPTH_QS_NO_CHECKS; - // Transposition table lookup. At PV nodes, we don't use the TT for - // pruning, but only for move ordering. + // Transposition table lookup posKey = pos.key(); tte = TT.probe(posKey); ttMove = tte ? tte->move() : MOVE_NONE;