]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Make imbalance table more clear
[stockfish] / src / search.cpp
index f2f640da6326a6dbfcf80cd1a156d80a5ad519fd..22a954ae8eaa2efd757d4df91552aa20693b3a2b 100644 (file)
@@ -885,7 +885,7 @@ moves_loop: // When in check and at SpNode search starts from here
 
           value = -search<NonPV, false>(pos, ss+1, -(alpha+1), -alpha, d, true);
 
-          // Research at intermediate depth if reduction is very high
+          // Re-search 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);