From: Marco Costalba Date: Mon, 22 Dec 2008 09:18:36 +0000 (+0100) Subject: Fix a comment X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=d11426c7779b45a5f91f260ecb9e0c4c1e964e2b Fix a comment Signed-off-by: Marco Costalba --- diff --git a/src/search.cpp b/src/search.cpp index 6f0ddea4..a4ce7eff 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1035,7 +1035,7 @@ namespace { else value = alpha + 1; // Just to trigger next condition - if (value > alpha) // Go with full depth pv search + if (value > alpha) // Go with full depth non-pv search { ss[ply].reduction = Depth(0); value = -search(pos, ss, -alpha, newDepth, ply+1, true, threadID);