X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=22a954ae8eaa2efd757d4df91552aa20693b3a2b;hp=f2f640da6326a6dbfcf80cd1a156d80a5ad519fd;hb=bfd8704a7d477a3a4d3ded55e263e7fcea2715aa;hpb=f89a8f0769d3c61edf0993721b03058a0c463bda diff --git a/src/search.cpp b/src/search.cpp index f2f640da..22a954ae 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -885,7 +885,7 @@ 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 + // 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);