]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Remove redundant assignment in search()
[stockfish] / src / search.cpp
index 37793d607e98e2f6e3b4254533a8da4bfa20e64f..58a82d9dc24699cf04ad76b8b3dae4d40a44ec71 100644 (file)
@@ -1067,7 +1067,6 @@ split_point_start: // At split points actual search starts from here
               ss->reduction = reduction<PvNode>(depth, moveCount);
               if (ss->reduction)
               {
-                  alpha = SpNode ? sp->alpha : alpha;
                   Depth d = newDepth - ss->reduction;
                   value = -search<NonPV>(pos, ss+1, -(alpha+1), -alpha, d);