From: Joost VandeVondele Date: Tue, 13 Mar 2018 07:10:59 +0000 (+0100) Subject: qsearch(): remove inCheck as a template parameter X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=efe702e9f5a05f61dd73cb589821712f64c56fbb qsearch(): remove inCheck as a template parameter Simplifies a bit, and avoids bugs as in #1478 Passed STC: LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 104862 W: 21302 L: 21337 D: 62223 http://tests.stockfishchess.org/tests/view/5aa6de1b0ebc590297810097 Closes https://github.com/official-stockfish/Stockfish/pull/1484 No functional change --- diff --git a/AUTHORS b/AUTHORS index 2d75f7cf..8f3e4663 100644 --- a/AUTHORS +++ b/AUTHORS @@ -77,16 +77,17 @@ Lucas Braesch (lucasart) Lyudmil Antonov (lantonov) Matthew Lai (matthewlai) Matthew Sullivan -mbootsector Michael Byrne (MichaelB7) Michael Stembera (mstembera) Michel Van den Bergh (vdbergh) +Mikael Bäckman (mbootsector) Mike Whiteley (protonspring) Miroslav Fontán (Hexik) Mohammed Li (tthsqe12) Nathan Rugg (nmrugg) Nicklas Persson (NicklasPersson) Niklas Fiekas (niklasf) +noobpwnftw Oskar Werkelin Ahlin Pablo Vazquez Pascal Romaret diff --git a/src/search.cpp b/src/search.cpp index 98e3e945..adb6a22a 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -101,7 +101,7 @@ namespace { template Value search(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth, bool cutNode, bool skipEarlyPruning); - template + template Value qsearch(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth = DEPTH_ZERO); Value value_to_tt(Value v, int ply); @@ -690,12 +690,12 @@ namespace { { if ( depth == ONE_PLY && eval + RazorMargin1 <= alpha) - return qsearch(pos, ss, alpha, alpha+1); + return qsearch(pos, ss, alpha, alpha+1); else if (eval + RazorMargin2 <= alpha) { Value ralpha = alpha - RazorMargin2; - Value v = qsearch(pos, ss, ralpha, ralpha+1); + Value v = qsearch(pos, ss, ralpha, ralpha+1); if (v <= ralpha) return v; @@ -724,7 +724,7 @@ namespace { ss->contHistory = thisThread->contHistory[NO_PIECE][0].get(); pos.do_null_move(st); - Value nullValue = depth-R < ONE_PLY ? -qsearch(pos, ss+1, -beta, -beta+1) + Value nullValue = depth-R < ONE_PLY ? -qsearch(pos, ss+1, -beta, -beta+1) : - search(pos, ss+1, -beta, -beta+1, depth-R, !cutNode, true); pos.undo_null_move(); @@ -742,7 +742,7 @@ namespace { thisThread->nmp_ply = ss->ply + 3 * (depth-R) / 4; thisThread->nmp_odd = ss->ply % 2; - Value v = depth-R < ONE_PLY ? qsearch(pos, ss, beta-1, beta) + Value v = depth-R < ONE_PLY ? qsearch(pos, ss, beta-1, beta) : search(pos, ss, beta-1, beta, depth-R, false, true); thisThread->nmp_odd = thisThread->nmp_ply = 0; @@ -1013,9 +1013,7 @@ moves_loop: // When in check, search starts from here // Step 17. Full depth search when LMR is skipped or fails high if (doFullDepthSearch) - value = newDepth < ONE_PLY ? - givesCheck ? -qsearch(pos, ss+1, -(alpha+1), -alpha) - : -qsearch(pos, ss+1, -(alpha+1), -alpha) + value = newDepth < ONE_PLY ? -qsearch(pos, ss+1, -(alpha+1), -alpha) : - search(pos, ss+1, -(alpha+1), -alpha, newDepth, !cutNode, false); // For PV nodes only, do a full PV search on the first move or after a fail @@ -1026,9 +1024,7 @@ moves_loop: // When in check, search starts from here (ss+1)->pv = pv; (ss+1)->pv[0] = MOVE_NONE; - value = newDepth < ONE_PLY ? - givesCheck ? -qsearch(pos, ss+1, -beta, -alpha) - : -qsearch(pos, ss+1, -beta, -alpha) + value = newDepth < ONE_PLY ? -qsearch(pos, ss+1, -beta, -alpha) : - search(pos, ss+1, -beta, -alpha, newDepth, false, false); } @@ -1158,17 +1154,16 @@ moves_loop: // When in check, search starts from here // qsearch() is the quiescence search function, which is called by the main // search function with depth zero, or recursively with depth less than ONE_PLY. - - template + template Value qsearch(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth) { const bool PvNode = NT == PV; + const bool InCheck = bool(pos.checkers()); assert(alpha >= -VALUE_INFINITE && alpha < beta && beta <= VALUE_INFINITE); assert(PvNode || (alpha == beta - 1)); assert(depth <= DEPTH_ZERO); assert(depth / ONE_PLY * ONE_PLY == depth); - assert(InCheck == bool(pos.checkers())); Move pv[MAX_PLY+1]; StateInfo st; @@ -1320,8 +1315,7 @@ moves_loop: // When in check, search starts from here // Make and search the move pos.do_move(move, st, givesCheck); - value = givesCheck ? -qsearch(pos, ss+1, -beta, -alpha, depth - ONE_PLY) - : -qsearch(pos, ss+1, -beta, -alpha, depth - ONE_PLY); + value = -qsearch(pos, ss+1, -beta, -alpha, depth - ONE_PLY); pos.undo_move(move); assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);