From: Joona Kiiski Date: Wed, 27 Jan 2010 20:59:18 +0000 (+0200) Subject: Bugfix: reduction was not set to zero in full depth search X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=3c7eebb48d5239cf363c54e082686f5559174518 Bugfix: reduction was not set to zero in full depth search Signed-off-by: Marco Costalba --- diff --git a/src/search.cpp b/src/search.cpp index 71a10104..c44d150f 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1000,6 +1000,7 @@ namespace { if (doFullDepthSearch) { + ss[0].reduction = Depth(0); value = -search(pos, ss, -alpha, newDepth, 1, true, 0); if (value > alpha)