]> git.sesse.net Git - stockfish/blob - src/search.cpp
Rename dbg_hit_on_c() to dbg_hit_on()
[stockfish] / src / search.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
5
6   Stockfish is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Stockfish is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include <algorithm>
21 #include <cassert>
22 #include <cmath>
23 #include <cstring>   // For std::memset
24 #include <iostream>
25 #include <sstream>
26
27 #include "evaluate.h"
28 #include "misc.h"
29 #include "movegen.h"
30 #include "movepick.h"
31 #include "search.h"
32 #include "timeman.h"
33 #include "thread.h"
34 #include "tt.h"
35 #include "uci.h"
36 #include "syzygy/tbprobe.h"
37
38 namespace Search {
39
40   volatile SignalsType Signals;
41   LimitsType Limits;
42   RootMoveVector RootMoves;
43   Position RootPos;
44   Time::point SearchTime;
45   StateStackPtr SetupStates;
46 }
47
48 namespace Tablebases {
49
50   int Cardinality;
51   uint64_t Hits;
52   bool RootInTB;
53   bool UseRule50;
54   Depth ProbeDepth;
55   Value Score;
56 }
57
58 namespace TB = Tablebases;
59
60 using std::string;
61 using Eval::evaluate;
62 using namespace Search;
63
64 namespace {
65
66   // Different node types, used as template parameter
67   enum NodeType { Root, PV, NonPV };
68
69   // Razoring and futility margin based on depth
70   inline Value razor_margin(Depth d) { return Value(512 + 32 * d); }
71   inline Value futility_margin(Depth d) { return Value(200 * d); }
72
73   // Futility and reductions lookup tables, initialized at startup
74   int FutilityMoveCounts[2][16];  // [improving][depth]
75   Depth Reductions[2][2][64][64]; // [pv][improving][depth][moveNumber]
76
77   template <bool PvNode> inline Depth reduction(bool i, Depth d, int mn) {
78     return Reductions[PvNode][i][std::min(d, 63 * ONE_PLY)][std::min(mn, 63)];
79   }
80
81   // Skill struct is used to implement strength limiting
82   struct Skill {
83     Skill(int l) : level(l) {}
84     bool enabled() const { return level < 20; }
85     bool time_to_pick(Depth depth) const { return depth / ONE_PLY == 1 + level; }
86     Move best_move(size_t multiPV) { return best ? best : pick_best(multiPV); }
87     Move pick_best(size_t multiPV);
88
89     int level;
90     Move best = MOVE_NONE;
91   };
92
93   size_t PVIdx;
94   TimeManager TimeMgr;
95   double BestMoveChanges;
96   Value DrawValue[COLOR_NB];
97   HistoryStats History;
98   GainsStats Gains;
99   MovesStats Countermoves, Followupmoves;
100
101   template <NodeType NT, bool SpNode>
102   Value search(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth, bool cutNode);
103
104   template <NodeType NT, bool InCheck>
105   Value qsearch(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth);
106
107   void id_loop(Position& pos);
108   Value value_to_tt(Value v, int ply);
109   Value value_from_tt(Value v, int ply);
110   void update_pv(Move* pv, Move move, Move* childPv);
111   void update_stats(const Position& pos, Stack* ss, Move move, Depth depth, Move* quiets, int quietsCnt);
112
113 } // namespace
114
115
116 /// Search::init() is called during startup to initialize various lookup tables
117
118 void Search::init() {
119
120   const double K[][2] = {{ 0.83, 2.25 }, { 0.50, 3.00 }};
121
122   for (int pv = 0; pv <= 1; ++pv)
123       for (int imp = 0; imp <= 1; ++imp)
124           for (int d = 1; d < 64; ++d)
125               for (int mc = 1; mc < 64; ++mc)
126               {
127                   double r = K[pv][0] + log(d) * log(mc) / K[pv][1];
128
129                   if (r >= 1.5)
130                       Reductions[pv][imp][d][mc] = int(r) * ONE_PLY;
131
132                   // Increase reduction when eval is not improving
133                   if (!pv && !imp && Reductions[pv][imp][d][mc] >= 2 * ONE_PLY)
134                       Reductions[pv][imp][d][mc] += ONE_PLY;
135               }
136
137   for (int d = 0; d < 16; ++d)
138   {
139       FutilityMoveCounts[0][d] = int(2.4 + 0.773 * pow(d + 0.00, 1.8));
140       FutilityMoveCounts[1][d] = int(2.9 + 1.045 * pow(d + 0.49, 1.8));
141   }
142 }
143
144
145 /// Search::perft() is our utility to verify move generation. All the leaf nodes
146 /// up to the given depth are generated and counted and the sum returned.
147 template<bool Root>
148 uint64_t Search::perft(Position& pos, Depth depth) {
149
150   StateInfo st;
151   uint64_t cnt, nodes = 0;
152   CheckInfo ci(pos);
153   const bool leaf = (depth == 2 * ONE_PLY);
154
155   for (const auto& m : MoveList<LEGAL>(pos))
156   {
157       if (Root && depth <= ONE_PLY)
158           cnt = 1, nodes++;
159       else
160       {
161           pos.do_move(m, st, ci, pos.gives_check(m, ci));
162           cnt = leaf ? MoveList<LEGAL>(pos).size() : perft<false>(pos, depth - ONE_PLY);
163           nodes += cnt;
164           pos.undo_move(m);
165       }
166       if (Root)
167           sync_cout << UCI::move(m, pos.is_chess960()) << ": " << cnt << sync_endl;
168   }
169   return nodes;
170 }
171
172 template uint64_t Search::perft<true>(Position& pos, Depth depth);
173
174
175 /// Search::think() is the external interface to Stockfish's search, and is
176 /// called by the main thread when the program receives the UCI 'go' command. It
177 /// searches from RootPos and at the end prints the "bestmove" to output.
178
179 void Search::think() {
180
181   TimeMgr.init(Limits, RootPos.side_to_move(), RootPos.game_ply());
182
183   int contempt = Options["Contempt"] * PawnValueEg / 100; // From centipawns
184   DrawValue[ RootPos.side_to_move()] = VALUE_DRAW - Value(contempt);
185   DrawValue[~RootPos.side_to_move()] = VALUE_DRAW + Value(contempt);
186
187   TB::Hits = 0;
188   TB::RootInTB = false;
189   TB::UseRule50 = Options["Syzygy50MoveRule"];
190   TB::ProbeDepth = Options["SyzygyProbeDepth"] * ONE_PLY;
191   TB::Cardinality = Options["SyzygyProbeLimit"];
192
193   // Skip TB probing when no TB found: !TBLargest -> !TB::Cardinality
194   if (TB::Cardinality > TB::MaxCardinality)
195   {
196       TB::Cardinality = TB::MaxCardinality;
197       TB::ProbeDepth = DEPTH_ZERO;
198   }
199
200   if (RootMoves.empty())
201   {
202       RootMoves.push_back(RootMove(MOVE_NONE));
203       sync_cout << "info depth 0 score "
204                 << UCI::value(RootPos.checkers() ? -VALUE_MATE : VALUE_DRAW)
205                 << sync_endl;
206   }
207   else
208   {
209       if (TB::Cardinality >=  RootPos.count<ALL_PIECES>(WHITE)
210                             + RootPos.count<ALL_PIECES>(BLACK))
211       {
212           // If the current root position is in the tablebases then RootMoves
213           // contains only moves that preserve the draw or win.
214           TB::RootInTB = Tablebases::root_probe(RootPos, RootMoves, TB::Score);
215
216           if (TB::RootInTB)
217               TB::Cardinality = 0; // Do not probe tablebases during the search
218
219           else // If DTZ tables are missing, use WDL tables as a fallback
220           {
221               // Filter out moves that do not preserve a draw or win
222               TB::RootInTB = Tablebases::root_probe_wdl(RootPos, RootMoves, TB::Score);
223
224               // Only probe during search if winning
225               if (TB::Score <= VALUE_DRAW)
226                   TB::Cardinality = 0;
227           }
228
229           if (TB::RootInTB)
230           {
231               TB::Hits = RootMoves.size();
232
233               if (!TB::UseRule50)
234                   TB::Score =  TB::Score > VALUE_DRAW ?  VALUE_MATE - MAX_PLY - 1
235                              : TB::Score < VALUE_DRAW ? -VALUE_MATE + MAX_PLY + 1
236                                                       :  VALUE_DRAW;
237           }
238       }
239
240       for (Thread* th : Threads)
241           th->maxPly = 0;
242
243       Threads.timer->run = true;
244       Threads.timer->notify_one(); // Wake up the recurring timer
245
246       id_loop(RootPos); // Let's start searching !
247
248       Threads.timer->run = false;
249   }
250
251   // When we reach the maximum depth, we can arrive here without a raise of
252   // Signals.stop. However, if we are pondering or in an infinite search,
253   // the UCI protocol states that we shouldn't print the best move before the
254   // GUI sends a "stop" or "ponderhit" command. We therefore simply wait here
255   // until the GUI sends one of those commands (which also raises Signals.stop).
256   if (!Signals.stop && (Limits.ponder || Limits.infinite))
257   {
258       Signals.stopOnPonderhit = true;
259       RootPos.this_thread()->wait_for(Signals.stop);
260   }
261
262   sync_cout << "bestmove " << UCI::move(RootMoves[0].pv[0], RootPos.is_chess960());
263
264   if (RootMoves[0].pv.size() > 1 || RootMoves[0].extract_ponder_from_tt(RootPos))
265       std::cout << " ponder " << UCI::move(RootMoves[0].pv[1], RootPos.is_chess960());
266
267   std::cout << sync_endl;
268 }
269
270
271 namespace {
272
273   // id_loop() is the main iterative deepening loop. It calls search() repeatedly
274   // with increasing depth until the allocated thinking time has been consumed,
275   // user stops the search, or the maximum search depth is reached.
276
277   void id_loop(Position& pos) {
278
279     Stack stack[MAX_PLY+4], *ss = stack+2; // To allow referencing (ss-2) and (ss+2)
280     Depth depth;
281     Value bestValue, alpha, beta, delta;
282
283     std::memset(ss-2, 0, 5 * sizeof(Stack));
284
285     depth = DEPTH_ZERO;
286     BestMoveChanges = 0;
287     bestValue = delta = alpha = -VALUE_INFINITE;
288     beta = VALUE_INFINITE;
289
290     TT.new_search();
291     History.clear();
292     Gains.clear();
293     Countermoves.clear();
294     Followupmoves.clear();
295
296     size_t multiPV = Options["MultiPV"];
297     Skill skill(Options["Skill Level"]);
298
299     // When playing with strength handicap enable MultiPV search that we will
300     // use behind the scenes to retrieve a set of possible moves.
301     if (skill.enabled())
302         multiPV = std::max(multiPV, (size_t)4);
303
304     multiPV = std::min(multiPV, RootMoves.size());
305
306     // Iterative deepening loop until requested to stop or target depth reached
307     while (++depth < DEPTH_MAX && !Signals.stop && (!Limits.depth || depth <= Limits.depth))
308     {
309         // Age out PV variability metric
310         BestMoveChanges *= 0.5;
311
312         // Save the last iteration's scores before first PV line is searched and
313         // all the move scores except the (new) PV are set to -VALUE_INFINITE.
314         for (RootMove& rm : RootMoves)
315             rm.previousScore = rm.score;
316
317         // MultiPV loop. We perform a full root search for each PV line
318         for (PVIdx = 0; PVIdx < multiPV && !Signals.stop; ++PVIdx)
319         {
320             // Reset aspiration window starting size
321             if (depth >= 5 * ONE_PLY)
322             {
323                 delta = Value(16);
324                 alpha = std::max(RootMoves[PVIdx].previousScore - delta,-VALUE_INFINITE);
325                 beta  = std::min(RootMoves[PVIdx].previousScore + delta, VALUE_INFINITE);
326             }
327
328             // Start with a small aspiration window and, in the case of a fail
329             // high/low, re-search with a bigger window until we're not failing
330             // high/low anymore.
331             while (true)
332             {
333                 bestValue = search<Root, false>(pos, ss, alpha, beta, depth, false);
334
335                 // Bring the best move to the front. It is critical that sorting
336                 // is done with a stable algorithm because all the values but the
337                 // first and eventually the new best one are set to -VALUE_INFINITE
338                 // and we want to keep the same order for all the moves except the
339                 // new PV that goes to the front. Note that in case of MultiPV
340                 // search the already searched PV lines are preserved.
341                 std::stable_sort(RootMoves.begin() + PVIdx, RootMoves.end());
342
343                 // Write PV back to transposition table in case the relevant
344                 // entries have been overwritten during the search.
345                 for (size_t i = 0; i <= PVIdx; ++i)
346                     RootMoves[i].insert_pv_in_tt(pos);
347
348                 // If search has been stopped break immediately. Sorting and
349                 // writing PV back to TT is safe because RootMoves is still
350                 // valid, although it refers to previous iteration.
351                 if (Signals.stop)
352                     break;
353
354                 // When failing high/low give some update (without cluttering
355                 // the UI) before a re-search.
356                 if (   multiPV == 1
357                     && (bestValue <= alpha || bestValue >= beta)
358                     && Time::now() - SearchTime > 3000)
359                     sync_cout << UCI::pv(pos, depth, alpha, beta) << sync_endl;
360
361                 // In case of failing low/high increase aspiration window and
362                 // re-search, otherwise exit the loop.
363                 if (bestValue <= alpha)
364                 {
365                     beta = (alpha + beta) / 2;
366                     alpha = std::max(bestValue - delta, -VALUE_INFINITE);
367
368                     Signals.failedLowAtRoot = true;
369                     Signals.stopOnPonderhit = false;
370                 }
371                 else if (bestValue >= beta)
372                 {
373                     alpha = (alpha + beta) / 2;
374                     beta = std::min(bestValue + delta, VALUE_INFINITE);
375                 }
376                 else
377                     break;
378
379                 delta += delta / 2;
380
381                 assert(alpha >= -VALUE_INFINITE && beta <= VALUE_INFINITE);
382             }
383
384             // Sort the PV lines searched so far and update the GUI
385             std::stable_sort(RootMoves.begin(), RootMoves.begin() + PVIdx + 1);
386
387             if (Signals.stop)
388                 sync_cout << "info nodes " << RootPos.nodes_searched()
389                           << " time " << Time::now() - SearchTime << sync_endl;
390
391             else if (PVIdx + 1 == multiPV || Time::now() - SearchTime > 3000)
392                 sync_cout << UCI::pv(pos, depth, alpha, beta) << sync_endl;
393         }
394
395         // If skill level is enabled and time is up, pick a sub-optimal best move
396         if (skill.enabled() && skill.time_to_pick(depth))
397             skill.pick_best(multiPV);
398
399         // Have we found a "mate in x"?
400         if (   Limits.mate
401             && bestValue >= VALUE_MATE_IN_MAX_PLY
402             && VALUE_MATE - bestValue <= 2 * Limits.mate)
403             Signals.stop = true;
404
405         // Do we have time for the next iteration? Can we stop searching now?
406         if (Limits.use_time_management() && !Signals.stop && !Signals.stopOnPonderhit)
407         {
408             // Take some extra time if the best move has changed
409             if (depth > 4 * ONE_PLY && multiPV == 1)
410                 TimeMgr.pv_instability(BestMoveChanges);
411
412             // Stop the search if only one legal move is available or all
413             // of the available time has been used.
414             if (   RootMoves.size() == 1
415                 || Time::now() - SearchTime > TimeMgr.available_time())
416             {
417                 // If we are allowed to ponder do not stop the search now but
418                 // keep pondering until the GUI sends "ponderhit" or "stop".
419                 if (Limits.ponder)
420                     Signals.stopOnPonderhit = true;
421                 else
422                     Signals.stop = true;
423             }
424         }
425     }
426
427     // If skill level is enabled, swap best PV line with the sub-optimal one
428     if (skill.enabled())
429         std::swap(RootMoves[0], *std::find(RootMoves.begin(),
430                   RootMoves.end(), skill.best_move(multiPV)));
431   }
432
433
434   // search<>() is the main search function for both PV and non-PV nodes and for
435   // normal and SplitPoint nodes. When called just after a split point the search
436   // is simpler because we have already probed the hash table, done a null move
437   // search, and searched the first move before splitting, so we don't have to
438   // repeat all this work again. We also don't need to store anything to the hash
439   // table here: This is taken care of after we return from the split point.
440
441   template <NodeType NT, bool SpNode>
442   Value search(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth, bool cutNode) {
443
444     const bool RootNode = NT == Root;
445     const bool PvNode   = NT == PV || NT == Root;
446
447     assert(-VALUE_INFINITE <= alpha && alpha < beta && beta <= VALUE_INFINITE);
448     assert(PvNode || (alpha == beta - 1));
449     assert(depth > DEPTH_ZERO);
450
451     Move pv[MAX_PLY+1], quietsSearched[64];
452     StateInfo st;
453     TTEntry* tte;
454     SplitPoint* splitPoint;
455     Key posKey;
456     Move ttMove, move, excludedMove, bestMove;
457     Depth extension, newDepth, predictedDepth;
458     Value bestValue, value, ttValue, eval, nullValue, futilityValue;
459     bool ttHit, inCheck, givesCheck, singularExtensionNode, improving;
460     bool captureOrPromotion, dangerous, doFullDepthSearch;
461     int moveCount, quietCount;
462
463     // Step 1. Initialize node
464     Thread* thisThread = pos.this_thread();
465     inCheck = pos.checkers();
466
467     if (SpNode)
468     {
469         splitPoint = ss->splitPoint;
470         bestMove   = splitPoint->bestMove;
471         bestValue  = splitPoint->bestValue;
472         tte = nullptr;
473         ttHit = false;
474         ttMove = excludedMove = MOVE_NONE;
475         ttValue = VALUE_NONE;
476
477         assert(splitPoint->bestValue > -VALUE_INFINITE && splitPoint->moveCount > 0);
478
479         goto moves_loop;
480     }
481
482     moveCount = quietCount = 0;
483     bestValue = -VALUE_INFINITE;
484     ss->ply = (ss-1)->ply + 1;
485
486     // Used to send selDepth info to GUI
487     if (PvNode && thisThread->maxPly < ss->ply)
488         thisThread->maxPly = ss->ply;
489
490     if (!RootNode)
491     {
492         // Step 2. Check for aborted search and immediate draw
493         if (Signals.stop || pos.is_draw() || ss->ply >= MAX_PLY)
494             return ss->ply >= MAX_PLY && !inCheck ? evaluate(pos) : DrawValue[pos.side_to_move()];
495
496         // Step 3. Mate distance pruning. Even if we mate at the next move our score
497         // would be at best mate_in(ss->ply+1), but if alpha is already bigger because
498         // a shorter mate was found upward in the tree then there is no need to search
499         // because we will never beat the current alpha. Same logic but with reversed
500         // signs applies also in the opposite condition of being mated instead of giving
501         // mate. In this case return a fail-high score.
502         alpha = std::max(mated_in(ss->ply), alpha);
503         beta = std::min(mate_in(ss->ply+1), beta);
504         if (alpha >= beta)
505             return alpha;
506     }
507
508     assert(0 <= ss->ply && ss->ply < MAX_PLY);
509
510     ss->currentMove = ss->ttMove = (ss+1)->excludedMove = bestMove = MOVE_NONE;
511     (ss+1)->skipEarlyPruning = false; (ss+1)->reduction = DEPTH_ZERO;
512     (ss+2)->killers[0] = (ss+2)->killers[1] = MOVE_NONE;
513
514     // Step 4. Transposition table lookup
515     // We don't want the score of a partial search to overwrite a previous full search
516     // TT value, so we use a different position key in case of an excluded move.
517     excludedMove = ss->excludedMove;
518     posKey = excludedMove ? pos.exclusion_key() : pos.key();
519     tte = TT.probe(posKey, ttHit);
520     ss->ttMove = ttMove = RootNode ? RootMoves[PVIdx].pv[0] : ttHit ? tte->move() : MOVE_NONE;
521     ttValue = ttHit ? value_from_tt(tte->value(), ss->ply) : VALUE_NONE;
522
523     // At non-PV nodes we check for a fail high/low. We don't probe at PV nodes
524     if (  !PvNode
525         && ttHit
526         && tte->depth() >= depth
527         && ttValue != VALUE_NONE // Only in case of TT access race
528         && (ttValue >= beta ? (tte->bound() & BOUND_LOWER)
529                             : (tte->bound() & BOUND_UPPER)))
530     {
531         ss->currentMove = ttMove; // Can be MOVE_NONE
532
533         // If ttMove is quiet, update killers, history, counter move and followup move on TT hit
534         if (ttValue >= beta && ttMove && !pos.capture_or_promotion(ttMove) && !inCheck)
535             update_stats(pos, ss, ttMove, depth, nullptr, 0);
536
537         return ttValue;
538     }
539
540     // Step 4a. Tablebase probe
541     if (!RootNode && TB::Cardinality)
542     {
543         int piecesCnt = pos.count<ALL_PIECES>(WHITE) + pos.count<ALL_PIECES>(BLACK);
544
545         if (    piecesCnt <= TB::Cardinality
546             && (piecesCnt <  TB::Cardinality || depth >= TB::ProbeDepth)
547             &&  pos.rule50_count() == 0)
548         {
549             int found, v = Tablebases::probe_wdl(pos, &found);
550
551             if (found)
552             {
553                 TB::Hits++;
554
555                 int drawScore = TB::UseRule50 ? 1 : 0;
556
557                 value =  v < -drawScore ? -VALUE_MATE + MAX_PLY + ss->ply
558                        : v >  drawScore ?  VALUE_MATE - MAX_PLY - ss->ply
559                                         :  VALUE_DRAW + 2 * v * drawScore;
560
561                 tte->save(posKey, value_to_tt(value, ss->ply), BOUND_EXACT,
562                           std::min(DEPTH_MAX - ONE_PLY, depth + 6 * ONE_PLY),
563                           MOVE_NONE, VALUE_NONE, TT.generation());
564
565                 return value;
566             }
567         }
568     }
569
570     // Step 5. Evaluate the position statically and update parent's gain statistics
571     if (inCheck)
572     {
573         ss->staticEval = eval = VALUE_NONE;
574         goto moves_loop;
575     }
576
577     else if (ttHit)
578     {
579         // Never assume anything on values stored in TT
580         if ((ss->staticEval = eval = tte->eval()) == VALUE_NONE)
581             eval = ss->staticEval = evaluate(pos);
582
583         // Can ttValue be used as a better position evaluation?
584         if (ttValue != VALUE_NONE)
585             if (tte->bound() & (ttValue > eval ? BOUND_LOWER : BOUND_UPPER))
586                 eval = ttValue;
587     }
588     else
589     {
590         eval = ss->staticEval =
591         (ss-1)->currentMove != MOVE_NULL ? evaluate(pos) : -(ss-1)->staticEval + 2 * Eval::Tempo;
592
593         tte->save(posKey, VALUE_NONE, BOUND_NONE, DEPTH_NONE, MOVE_NONE, ss->staticEval, TT.generation());
594     }
595
596     if (ss->skipEarlyPruning)
597         goto moves_loop;
598
599     if (   !pos.captured_piece_type()
600         &&  ss->staticEval != VALUE_NONE
601         && (ss-1)->staticEval != VALUE_NONE
602         && (move = (ss-1)->currentMove) != MOVE_NULL
603         &&  move != MOVE_NONE
604         &&  type_of(move) == NORMAL)
605     {
606         Square to = to_sq(move);
607         Gains.update(pos.piece_on(to), to, -(ss-1)->staticEval - ss->staticEval);
608     }
609
610     // Step 6. Razoring (skipped when in check)
611     if (   !PvNode
612         &&  depth < 4 * ONE_PLY
613         &&  eval + razor_margin(depth) <= alpha
614         &&  ttMove == MOVE_NONE
615         && !pos.pawn_on_7th(pos.side_to_move()))
616     {
617         if (   depth <= ONE_PLY
618             && eval + razor_margin(3 * ONE_PLY) <= alpha)
619             return qsearch<NonPV, false>(pos, ss, alpha, beta, DEPTH_ZERO);
620
621         Value ralpha = alpha - razor_margin(depth);
622         Value v = qsearch<NonPV, false>(pos, ss, ralpha, ralpha+1, DEPTH_ZERO);
623         if (v <= ralpha)
624             return v;
625     }
626
627     // Step 7. Futility pruning: child node (skipped when in check)
628     if (   !RootNode
629         &&  depth < 7 * ONE_PLY
630         &&  eval - futility_margin(depth) >= beta
631         &&  eval < VALUE_KNOWN_WIN  // Do not return unproven wins
632         &&  pos.non_pawn_material(pos.side_to_move()))
633         return eval - futility_margin(depth);
634
635     // Step 8. Null move search with verification search (is omitted in PV nodes)
636     if (   !PvNode
637         &&  depth >= 2 * ONE_PLY
638         &&  eval >= beta
639         &&  pos.non_pawn_material(pos.side_to_move()))
640     {
641         ss->currentMove = MOVE_NULL;
642
643         assert(eval - beta >= 0);
644
645         // Null move dynamic reduction based on depth and value
646         Depth R = ((823 + 67 * depth) / 256 + std::min((eval - beta) / PawnValueMg, 3)) * ONE_PLY;
647
648         pos.do_null_move(st);
649         (ss+1)->skipEarlyPruning = true;
650         nullValue = depth-R < ONE_PLY ? -qsearch<NonPV, false>(pos, ss+1, -beta, -beta+1, DEPTH_ZERO)
651                                       : - search<NonPV, false>(pos, ss+1, -beta, -beta+1, depth-R, !cutNode);
652         (ss+1)->skipEarlyPruning = false;
653         pos.undo_null_move();
654
655         if (nullValue >= beta)
656         {
657             // Do not return unproven mate scores
658             if (nullValue >= VALUE_MATE_IN_MAX_PLY)
659                 nullValue = beta;
660
661             if (depth < 12 * ONE_PLY && abs(beta) < VALUE_KNOWN_WIN)
662                 return nullValue;
663
664             // Do verification search at high depths
665             ss->skipEarlyPruning = true;
666             Value v = depth-R < ONE_PLY ? qsearch<NonPV, false>(pos, ss, beta-1, beta, DEPTH_ZERO)
667                                         :  search<NonPV, false>(pos, ss, beta-1, beta, depth-R, false);
668             ss->skipEarlyPruning = false;
669
670             if (v >= beta)
671                 return nullValue;
672         }
673     }
674
675     // Step 9. ProbCut (skipped when in check)
676     // If we have a very good capture (i.e. SEE > seeValues[captured_piece_type])
677     // and a reduced search returns a value much above beta, we can (almost) safely
678     // prune the previous move.
679     if (   !PvNode
680         &&  depth >= 5 * ONE_PLY
681         &&  abs(beta) < VALUE_MATE_IN_MAX_PLY)
682     {
683         Value rbeta = std::min(beta + 200, VALUE_INFINITE);
684         Depth rdepth = depth - 4 * ONE_PLY;
685
686         assert(rdepth >= ONE_PLY);
687         assert((ss-1)->currentMove != MOVE_NONE);
688         assert((ss-1)->currentMove != MOVE_NULL);
689
690         MovePicker mp(pos, ttMove, History, pos.captured_piece_type());
691         CheckInfo ci(pos);
692
693         while ((move = mp.next_move<false>()) != MOVE_NONE)
694             if (pos.legal(move, ci.pinned))
695             {
696                 ss->currentMove = move;
697                 pos.do_move(move, st, ci, pos.gives_check(move, ci));
698                 value = -search<NonPV, false>(pos, ss+1, -rbeta, -rbeta+1, rdepth, !cutNode);
699                 pos.undo_move(move);
700                 if (value >= rbeta)
701                     return value;
702             }
703     }
704
705     // Step 10. Internal iterative deepening (skipped when in check)
706     if (    depth >= (PvNode ? 5 * ONE_PLY : 8 * ONE_PLY)
707         && !ttMove
708         && (PvNode || ss->staticEval + 256 >= beta))
709     {
710         Depth d = 2 * (depth - 2 * ONE_PLY) - (PvNode ? DEPTH_ZERO : depth / 2);
711         ss->skipEarlyPruning = true;
712         search<PvNode ? PV : NonPV, false>(pos, ss, alpha, beta, d / 2, true);
713         ss->skipEarlyPruning = false;
714
715         tte = TT.probe(posKey, ttHit);
716         ttMove = ttHit ? tte->move() : MOVE_NONE;
717     }
718
719 moves_loop: // When in check and at SpNode search starts from here
720
721     Square prevMoveSq = to_sq((ss-1)->currentMove);
722     Move countermoves[] = { Countermoves[pos.piece_on(prevMoveSq)][prevMoveSq].first,
723                             Countermoves[pos.piece_on(prevMoveSq)][prevMoveSq].second };
724
725     Square prevOwnMoveSq = to_sq((ss-2)->currentMove);
726     Move followupmoves[] = { Followupmoves[pos.piece_on(prevOwnMoveSq)][prevOwnMoveSq].first,
727                              Followupmoves[pos.piece_on(prevOwnMoveSq)][prevOwnMoveSq].second };
728
729     MovePicker mp(pos, ttMove, depth, History, countermoves, followupmoves, ss);
730     CheckInfo ci(pos);
731     value = bestValue; // Workaround a bogus 'uninitialized' warning under gcc
732     improving =   ss->staticEval >= (ss-2)->staticEval
733                || ss->staticEval == VALUE_NONE
734                ||(ss-2)->staticEval == VALUE_NONE;
735
736     singularExtensionNode =   !RootNode
737                            && !SpNode
738                            &&  depth >= 8 * ONE_PLY
739                            &&  ttMove != MOVE_NONE
740                        /*  &&  ttValue != VALUE_NONE Already implicit in the next condition */
741                            &&  abs(ttValue) < VALUE_KNOWN_WIN
742                            && !excludedMove // Recursive singular search is not allowed
743                            && (tte->bound() & BOUND_LOWER)
744                            &&  tte->depth() >= depth - 3 * ONE_PLY;
745
746     // Step 11. Loop through moves
747     // Loop through all pseudo-legal moves until no moves remain or a beta cutoff occurs
748     while ((move = mp.next_move<SpNode>()) != MOVE_NONE)
749     {
750       assert(is_ok(move));
751
752       if (move == excludedMove)
753           continue;
754
755       // At root obey the "searchmoves" option and skip moves not listed in Root
756       // Move List. As a consequence any illegal move is also skipped. In MultiPV
757       // mode we also skip PV moves which have been already searched.
758       if (RootNode && !std::count(RootMoves.begin() + PVIdx, RootMoves.end(), move))
759           continue;
760
761       if (SpNode)
762       {
763           // Shared counter cannot be decremented later if the move turns out to be illegal
764           if (!pos.legal(move, ci.pinned))
765               continue;
766
767           moveCount = ++splitPoint->moveCount;
768           splitPoint->mutex.unlock();
769       }
770       else
771           ++moveCount;
772
773       if (RootNode)
774       {
775           Signals.firstRootMove = (moveCount == 1);
776
777           if (thisThread == Threads.main() && Time::now() - SearchTime > 3000)
778               sync_cout << "info depth " << depth / ONE_PLY
779                         << " currmove " << UCI::move(move, pos.is_chess960())
780                         << " currmovenumber " << moveCount + PVIdx << sync_endl;
781       }
782
783       if (PvNode)
784           (ss+1)->pv = nullptr;
785
786       extension = DEPTH_ZERO;
787       captureOrPromotion = pos.capture_or_promotion(move);
788
789       givesCheck =  type_of(move) == NORMAL && !ci.dcCandidates
790                   ? ci.checkSq[type_of(pos.piece_on(from_sq(move)))] & to_sq(move)
791                   : pos.gives_check(move, ci);
792
793       dangerous =   givesCheck
794                  || type_of(move) != NORMAL
795                  || pos.advanced_pawn_push(move);
796
797       // Step 12. Extend checks
798       if (givesCheck && pos.see_sign(move) >= VALUE_ZERO)
799           extension = ONE_PLY;
800
801       // Singular extension search. If all moves but one fail low on a search of
802       // (alpha-s, beta-s), and just one fails high on (alpha, beta), then that move
803       // is singular and should be extended. To verify this we do a reduced search
804       // on all the other moves but the ttMove and if the result is lower than
805       // ttValue minus a margin then we extend the ttMove.
806       if (    singularExtensionNode
807           &&  move == ttMove
808           && !extension
809           &&  pos.legal(move, ci.pinned))
810       {
811           Value rBeta = ttValue - 2 * depth / ONE_PLY;
812           ss->excludedMove = move;
813           ss->skipEarlyPruning = true;
814           value = search<NonPV, false>(pos, ss, rBeta - 1, rBeta, depth / 2, cutNode);
815           ss->skipEarlyPruning = false;
816           ss->excludedMove = MOVE_NONE;
817
818           if (value < rBeta)
819               extension = ONE_PLY;
820       }
821
822       // Update the current move (this must be done after singular extension search)
823       newDepth = depth - ONE_PLY + extension;
824
825       // Step 13. Pruning at shallow depth
826       if (   !RootNode
827           && !captureOrPromotion
828           && !inCheck
829           && !dangerous
830           &&  bestValue > VALUE_MATED_IN_MAX_PLY)
831       {
832           // Move count based pruning
833           if (   depth < 16 * ONE_PLY
834               && moveCount >= FutilityMoveCounts[improving][depth])
835           {
836               if (SpNode)
837                   splitPoint->mutex.lock();
838
839               continue;
840           }
841
842           predictedDepth = newDepth - reduction<PvNode>(improving, depth, moveCount);
843
844           // Futility pruning: parent node
845           if (predictedDepth < 7 * ONE_PLY)
846           {
847               futilityValue =  ss->staticEval + futility_margin(predictedDepth)
848                              + 128 + Gains[pos.moved_piece(move)][to_sq(move)];
849
850               if (futilityValue <= alpha)
851               {
852                   bestValue = std::max(bestValue, futilityValue);
853
854                   if (SpNode)
855                   {
856                       splitPoint->mutex.lock();
857                       if (bestValue > splitPoint->bestValue)
858                           splitPoint->bestValue = bestValue;
859                   }
860                   continue;
861               }
862           }
863
864           // Prune moves with negative SEE at low depths
865           if (predictedDepth < 4 * ONE_PLY && pos.see_sign(move) < VALUE_ZERO)
866           {
867               if (SpNode)
868                   splitPoint->mutex.lock();
869
870               continue;
871           }
872       }
873
874       // Speculative prefetch as early as possible
875       prefetch((char*)TT.first_entry(pos.key_after(move)));
876
877       // Check for legality just before making the move
878       if (!RootNode && !SpNode && !pos.legal(move, ci.pinned))
879       {
880           moveCount--;
881           continue;
882       }
883
884       ss->currentMove = move;
885       if (!SpNode && !captureOrPromotion && quietCount < 64)
886           quietsSearched[quietCount++] = move;
887
888       // Step 14. Make the move
889       pos.do_move(move, st, ci, givesCheck);
890
891       // Step 15. Reduced depth search (LMR). If the move fails high it will be
892       // re-searched at full depth.
893       if (    depth >= 3 * ONE_PLY
894           &&  moveCount > 1
895           && !captureOrPromotion
896           &&  move != ss->killers[0]
897           &&  move != ss->killers[1])
898       {
899           ss->reduction = reduction<PvNode>(improving, depth, moveCount);
900
901           if (   (!PvNode && cutNode)
902               ||  History[pos.piece_on(to_sq(move))][to_sq(move)] < VALUE_ZERO)
903               ss->reduction += ONE_PLY;
904
905           if (move == countermoves[0] || move == countermoves[1])
906               ss->reduction = std::max(DEPTH_ZERO, ss->reduction - ONE_PLY);
907
908           // Decrease reduction for moves that escape a capture
909           if (   ss->reduction
910               && type_of(move) == NORMAL
911               && type_of(pos.piece_on(to_sq(move))) != PAWN
912               && pos.see(make_move(to_sq(move), from_sq(move))) < VALUE_ZERO)
913               ss->reduction = std::max(DEPTH_ZERO, ss->reduction - ONE_PLY);
914
915           Depth d = std::max(newDepth - ss->reduction, ONE_PLY);
916           if (SpNode)
917               alpha = splitPoint->alpha;
918
919           value = -search<NonPV, false>(pos, ss+1, -(alpha+1), -alpha, d, true);
920
921           // Re-search at intermediate depth if reduction is very high
922           if (value > alpha && ss->reduction >= 4 * ONE_PLY)
923           {
924               Depth d2 = std::max(newDepth - 2 * ONE_PLY, ONE_PLY);
925               value = -search<NonPV, false>(pos, ss+1, -(alpha+1), -alpha, d2, true);
926           }
927
928           doFullDepthSearch = (value > alpha && ss->reduction != DEPTH_ZERO);
929           ss->reduction = DEPTH_ZERO;
930       }
931       else
932           doFullDepthSearch = !PvNode || moveCount > 1;
933
934       // Step 16. Full depth search, when LMR is skipped or fails high
935       if (doFullDepthSearch)
936       {
937           if (SpNode)
938               alpha = splitPoint->alpha;
939
940           value = newDepth <   ONE_PLY ?
941                             givesCheck ? -qsearch<NonPV,  true>(pos, ss+1, -(alpha+1), -alpha, DEPTH_ZERO)
942                                        : -qsearch<NonPV, false>(pos, ss+1, -(alpha+1), -alpha, DEPTH_ZERO)
943                                        : - search<NonPV, false>(pos, ss+1, -(alpha+1), -alpha, newDepth, !cutNode);
944       }
945
946       // For PV nodes only, do a full PV search on the first move or after a fail
947       // high (in the latter case search only if value < beta), otherwise let the
948       // parent node fail low with value <= alpha and to try another move.
949       if (PvNode && (moveCount == 1 || (value > alpha && (RootNode || value < beta))))
950       {
951           (ss+1)->pv = pv;
952           (ss+1)->pv[0] = MOVE_NONE;
953
954           value = newDepth <   ONE_PLY ?
955                             givesCheck ? -qsearch<PV,  true>(pos, ss+1, -beta, -alpha, DEPTH_ZERO)
956                                        : -qsearch<PV, false>(pos, ss+1, -beta, -alpha, DEPTH_ZERO)
957                                        : - search<PV, false>(pos, ss+1, -beta, -alpha, newDepth, false);
958       }
959
960       // Step 17. Undo move
961       pos.undo_move(move);
962
963       assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);
964
965       // Step 18. Check for new best move
966       if (SpNode)
967       {
968           splitPoint->mutex.lock();
969           bestValue = splitPoint->bestValue;
970           alpha = splitPoint->alpha;
971       }
972
973       // Finished searching the move. If a stop or a cutoff occurred, the return
974       // value of the search cannot be trusted, and we return immediately without
975       // updating best move, PV and TT.
976       if (Signals.stop || thisThread->cutoff_occurred())
977           return VALUE_ZERO;
978
979       if (RootNode)
980       {
981           RootMove& rm = *std::find(RootMoves.begin(), RootMoves.end(), move);
982
983           // PV move or new best move ?
984           if (moveCount == 1 || value > alpha)
985           {
986               rm.score = value;
987               rm.pv.resize(1);
988
989               assert((ss+1)->pv);
990
991               for (Move* m = (ss+1)->pv; *m != MOVE_NONE; ++m)
992                   rm.pv.push_back(*m);
993
994               // We record how often the best move has been changed in each
995               // iteration. This information is used for time management: When
996               // the best move changes frequently, we allocate some more time.
997               if (moveCount > 1)
998                   ++BestMoveChanges;
999           }
1000           else
1001               // All other moves but the PV are set to the lowest value: this is
1002               // not a problem when sorting because the sort is stable and the
1003               // move position in the list is preserved - just the PV is pushed up.
1004               rm.score = -VALUE_INFINITE;
1005       }
1006
1007       if (value > bestValue)
1008       {
1009           bestValue = SpNode ? splitPoint->bestValue = value : value;
1010
1011           if (value > alpha)
1012           {
1013               bestMove = SpNode ? splitPoint->bestMove = move : move;
1014
1015               if (PvNode && !RootNode) // Update pv even in fail-high case
1016                   update_pv(SpNode ? splitPoint->ss->pv : ss->pv, move, (ss+1)->pv);
1017
1018               if (PvNode && value < beta) // Update alpha! Always alpha < beta
1019                   alpha = SpNode ? splitPoint->alpha = value : value;
1020               else
1021               {
1022                   assert(value >= beta); // Fail high
1023
1024                   if (SpNode)
1025                       splitPoint->cutoff = true;
1026
1027                   break;
1028               }
1029           }
1030       }
1031
1032       // Step 19. Check for splitting the search
1033       if (   !SpNode
1034           &&  Threads.size() >= 2
1035           &&  depth >= Threads.minimumSplitDepth
1036           &&  (   !thisThread->activeSplitPoint
1037                || !thisThread->activeSplitPoint->allSlavesSearching)
1038           &&  thisThread->splitPointsSize < MAX_SPLITPOINTS_PER_THREAD)
1039       {
1040           assert(bestValue > -VALUE_INFINITE && bestValue < beta);
1041
1042           thisThread->split(pos, ss, alpha, beta, &bestValue, &bestMove,
1043                             depth, moveCount, &mp, NT, cutNode);
1044
1045           if (Signals.stop || thisThread->cutoff_occurred())
1046               return VALUE_ZERO;
1047
1048           if (bestValue >= beta)
1049               break;
1050       }
1051     }
1052
1053     if (SpNode)
1054         return bestValue;
1055
1056     // Following condition would detect a stop or a cutoff set only after move
1057     // loop has been completed. But in this case bestValue is valid because we
1058     // have fully searched our subtree, and we can anyhow save the result in TT.
1059     /*
1060        if (Signals.stop || thisThread->cutoff_occurred())
1061         return VALUE_DRAW;
1062     */
1063
1064     // Step 20. Check for mate and stalemate
1065     // All legal moves have been searched and if there are no legal moves, it
1066     // must be mate or stalemate. If we are in a singular extension search then
1067     // return a fail low score.
1068     if (!moveCount)
1069         bestValue = excludedMove ? alpha
1070                    :     inCheck ? mated_in(ss->ply) : DrawValue[pos.side_to_move()];
1071
1072     // Quiet best move: update killers, history, countermoves and followupmoves
1073     else if (bestValue >= beta && !pos.capture_or_promotion(bestMove) && !inCheck)
1074         update_stats(pos, ss, bestMove, depth, quietsSearched, quietCount - 1);
1075
1076     tte->save(posKey, value_to_tt(bestValue, ss->ply),
1077               bestValue >= beta ? BOUND_LOWER :
1078               PvNode && bestMove ? BOUND_EXACT : BOUND_UPPER,
1079               depth, bestMove, ss->staticEval, TT.generation());
1080
1081     assert(bestValue > -VALUE_INFINITE && bestValue < VALUE_INFINITE);
1082
1083     return bestValue;
1084   }
1085
1086
1087   // qsearch() is the quiescence search function, which is called by the main
1088   // search function when the remaining depth is zero (or, to be more precise,
1089   // less than ONE_PLY).
1090
1091   template <NodeType NT, bool InCheck>
1092   Value qsearch(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth) {
1093
1094     const bool PvNode = NT == PV;
1095
1096     assert(NT == PV || NT == NonPV);
1097     assert(InCheck == !!pos.checkers());
1098     assert(alpha >= -VALUE_INFINITE && alpha < beta && beta <= VALUE_INFINITE);
1099     assert(PvNode || (alpha == beta - 1));
1100     assert(depth <= DEPTH_ZERO);
1101
1102     Move pv[MAX_PLY+1];
1103     StateInfo st;
1104     TTEntry* tte;
1105     Key posKey;
1106     Move ttMove, move, bestMove;
1107     Value bestValue, value, ttValue, futilityValue, futilityBase, oldAlpha;
1108     bool ttHit, givesCheck, evasionPrunable;
1109     Depth ttDepth;
1110
1111     if (PvNode)
1112     {
1113         oldAlpha = alpha; // To flag BOUND_EXACT when eval above alpha and no available moves
1114         (ss+1)->pv = pv;
1115         ss->pv[0] = MOVE_NONE;
1116     }
1117
1118     ss->currentMove = bestMove = MOVE_NONE;
1119     ss->ply = (ss-1)->ply + 1;
1120
1121     // Check for an instant draw or if the maximum ply has been reached
1122     if (pos.is_draw() || ss->ply >= MAX_PLY)
1123         return ss->ply >= MAX_PLY && !InCheck ? evaluate(pos) : DrawValue[pos.side_to_move()];
1124
1125     assert(0 <= ss->ply && ss->ply < MAX_PLY);
1126
1127     // Decide whether or not to include checks: this fixes also the type of
1128     // TT entry depth that we are going to use. Note that in qsearch we use
1129     // only two types of depth in TT: DEPTH_QS_CHECKS or DEPTH_QS_NO_CHECKS.
1130     ttDepth = InCheck || depth >= DEPTH_QS_CHECKS ? DEPTH_QS_CHECKS
1131                                                   : DEPTH_QS_NO_CHECKS;
1132
1133     // Transposition table lookup
1134     posKey = pos.key();
1135     tte = TT.probe(posKey, ttHit);
1136     ttMove = ttHit ? tte->move() : MOVE_NONE;
1137     ttValue = ttHit ? value_from_tt(tte->value(), ss->ply) : VALUE_NONE;
1138
1139     if (  !PvNode
1140         && ttHit
1141         && tte->depth() >= ttDepth
1142         && ttValue != VALUE_NONE // Only in case of TT access race
1143         && (ttValue >= beta ? (tte->bound() &  BOUND_LOWER)
1144                             : (tte->bound() &  BOUND_UPPER)))
1145     {
1146         ss->currentMove = ttMove; // Can be MOVE_NONE
1147         return ttValue;
1148     }
1149
1150     // Evaluate the position statically
1151     if (InCheck)
1152     {
1153         ss->staticEval = VALUE_NONE;
1154         bestValue = futilityBase = -VALUE_INFINITE;
1155     }
1156     else
1157     {
1158         if (ttHit)
1159         {
1160             // Never assume anything on values stored in TT
1161             if ((ss->staticEval = bestValue = tte->eval()) == VALUE_NONE)
1162                 ss->staticEval = bestValue = evaluate(pos);
1163
1164             // Can ttValue be used as a better position evaluation?
1165             if (ttValue != VALUE_NONE)
1166                 if (tte->bound() & (ttValue > bestValue ? BOUND_LOWER : BOUND_UPPER))
1167                     bestValue = ttValue;
1168         }
1169         else
1170             ss->staticEval = bestValue =
1171             (ss-1)->currentMove != MOVE_NULL ? evaluate(pos) : -(ss-1)->staticEval + 2 * Eval::Tempo;
1172
1173         // Stand pat. Return immediately if static value is at least beta
1174         if (bestValue >= beta)
1175         {
1176             if (!ttHit)
1177                 tte->save(pos.key(), value_to_tt(bestValue, ss->ply), BOUND_LOWER,
1178                           DEPTH_NONE, MOVE_NONE, ss->staticEval, TT.generation());
1179
1180             return bestValue;
1181         }
1182
1183         if (PvNode && bestValue > alpha)
1184             alpha = bestValue;
1185
1186         futilityBase = bestValue + 128;
1187     }
1188
1189     // Initialize a MovePicker object for the current position, and prepare
1190     // to search the moves. Because the depth is <= 0 here, only captures,
1191     // queen promotions and checks (only if depth >= DEPTH_QS_CHECKS) will
1192     // be generated.
1193     MovePicker mp(pos, ttMove, depth, History, to_sq((ss-1)->currentMove));
1194     CheckInfo ci(pos);
1195
1196     // Loop through the moves until no moves remain or a beta cutoff occurs
1197     while ((move = mp.next_move<false>()) != MOVE_NONE)
1198     {
1199       assert(is_ok(move));
1200
1201       givesCheck =  type_of(move) == NORMAL && !ci.dcCandidates
1202                   ? ci.checkSq[type_of(pos.piece_on(from_sq(move)))] & to_sq(move)
1203                   : pos.gives_check(move, ci);
1204
1205       // Futility pruning
1206       if (   !InCheck
1207           && !givesCheck
1208           &&  futilityBase > -VALUE_KNOWN_WIN
1209           && !pos.advanced_pawn_push(move))
1210       {
1211           assert(type_of(move) != ENPASSANT); // Due to !pos.advanced_pawn_push
1212
1213           futilityValue = futilityBase + PieceValue[EG][pos.piece_on(to_sq(move))];
1214
1215           if (futilityValue <= alpha)
1216           {
1217               bestValue = std::max(bestValue, futilityValue);
1218               continue;
1219           }
1220
1221           if (futilityBase <= alpha && pos.see(move) <= VALUE_ZERO)
1222           {
1223               bestValue = std::max(bestValue, futilityBase);
1224               continue;
1225           }
1226       }
1227
1228       // Detect non-capture evasions that are candidates to be pruned
1229       evasionPrunable =    InCheck
1230                        &&  bestValue > VALUE_MATED_IN_MAX_PLY
1231                        && !pos.capture(move)
1232                        && !pos.can_castle(pos.side_to_move());
1233
1234       // Don't search moves with negative SEE values
1235       if (  (!InCheck || evasionPrunable)
1236           &&  type_of(move) != PROMOTION
1237           &&  pos.see_sign(move) < VALUE_ZERO)
1238           continue;
1239
1240       // Speculative prefetch as early as possible
1241       prefetch((char*)TT.first_entry(pos.key_after(move)));
1242
1243       // Check for legality just before making the move
1244       if (!pos.legal(move, ci.pinned))
1245           continue;
1246
1247       ss->currentMove = move;
1248
1249       // Make and search the move
1250       pos.do_move(move, st, ci, givesCheck);
1251       value = givesCheck ? -qsearch<NT,  true>(pos, ss+1, -beta, -alpha, depth - ONE_PLY)
1252                          : -qsearch<NT, false>(pos, ss+1, -beta, -alpha, depth - ONE_PLY);
1253       pos.undo_move(move);
1254
1255       assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);
1256
1257       // Check for new best move
1258       if (value > bestValue)
1259       {
1260           bestValue = value;
1261
1262           if (value > alpha)
1263           {
1264               if (PvNode) // Update pv even in fail-high case
1265                   update_pv(ss->pv, move, (ss+1)->pv);
1266
1267               if (PvNode && value < beta) // Update alpha here! Always alpha < beta
1268               {
1269                   alpha = value;
1270                   bestMove = move;
1271               }
1272               else // Fail high
1273               {
1274                   tte->save(posKey, value_to_tt(value, ss->ply), BOUND_LOWER,
1275                             ttDepth, move, ss->staticEval, TT.generation());
1276
1277                   return value;
1278               }
1279           }
1280        }
1281     }
1282
1283     // All legal moves have been searched. A special case: If we're in check
1284     // and no legal moves were found, it is checkmate.
1285     if (InCheck && bestValue == -VALUE_INFINITE)
1286         return mated_in(ss->ply); // Plies to mate from the root
1287
1288     tte->save(posKey, value_to_tt(bestValue, ss->ply),
1289               PvNode && bestValue > oldAlpha ? BOUND_EXACT : BOUND_UPPER,
1290               ttDepth, bestMove, ss->staticEval, TT.generation());
1291
1292     assert(bestValue > -VALUE_INFINITE && bestValue < VALUE_INFINITE);
1293
1294     return bestValue;
1295   }
1296
1297
1298   // value_to_tt() adjusts a mate score from "plies to mate from the root" to
1299   // "plies to mate from the current position". Non-mate scores are unchanged.
1300   // The function is called before storing a value in the transposition table.
1301
1302   Value value_to_tt(Value v, int ply) {
1303
1304     assert(v != VALUE_NONE);
1305
1306     return  v >= VALUE_MATE_IN_MAX_PLY  ? v + ply
1307           : v <= VALUE_MATED_IN_MAX_PLY ? v - ply : v;
1308   }
1309
1310
1311   // value_from_tt() is the inverse of value_to_tt(): It adjusts a mate score
1312   // from the transposition table (which refers to the plies to mate/be mated
1313   // from current position) to "plies to mate/be mated from the root".
1314
1315   Value value_from_tt(Value v, int ply) {
1316
1317     return  v == VALUE_NONE             ? VALUE_NONE
1318           : v >= VALUE_MATE_IN_MAX_PLY  ? v - ply
1319           : v <= VALUE_MATED_IN_MAX_PLY ? v + ply : v;
1320   }
1321
1322
1323   // update_pv() adds current move and appends child pv[]
1324
1325   void update_pv(Move* pv, Move move, Move* childPv) {
1326
1327     for (*pv++ = move; childPv && *childPv != MOVE_NONE; )
1328         *pv++ = *childPv++;
1329     *pv = MOVE_NONE;
1330   }
1331
1332   // update_stats() updates killers, history, countermoves and followupmoves stats after a fail-high
1333   // of a quiet move.
1334
1335   void update_stats(const Position& pos, Stack* ss, Move move, Depth depth, Move* quiets, int quietsCnt) {
1336
1337     if (ss->killers[0] != move)
1338     {
1339         ss->killers[1] = ss->killers[0];
1340         ss->killers[0] = move;
1341     }
1342
1343     // Increase history value of the cut-off move and decrease all the other
1344     // played quiet moves.
1345     Value bonus = Value((depth / ONE_PLY) * (depth / ONE_PLY));
1346     History.update(pos.moved_piece(move), to_sq(move), bonus);
1347
1348     for (int i = 0; i < quietsCnt; ++i)
1349     {
1350         Move m = quiets[i];
1351         History.update(pos.moved_piece(m), to_sq(m), -bonus);
1352     }
1353
1354     if (is_ok((ss-1)->currentMove))
1355     {
1356         Square prevMoveSq = to_sq((ss-1)->currentMove);
1357         Countermoves.update(pos.piece_on(prevMoveSq), prevMoveSq, move);
1358     }
1359
1360     if (is_ok((ss-2)->currentMove) && (ss-1)->currentMove == (ss-1)->ttMove)
1361     {
1362         Square prevOwnMoveSq = to_sq((ss-2)->currentMove);
1363         Followupmoves.update(pos.piece_on(prevOwnMoveSq), prevOwnMoveSq, move);
1364     }
1365   }
1366
1367
1368   // When playing with strength handicap, choose best move among a set of RootMoves
1369   // using a statistical rule dependent on 'level'. Idea by Heinz van Saanen.
1370
1371   Move Skill::pick_best(size_t multiPV) {
1372
1373     // PRNG sequence should be non-deterministic, so we seed it with the time at init
1374     static PRNG rng(Time::now());
1375
1376     // RootMoves are already sorted by score in descending order
1377     int variance = std::min(RootMoves[0].score - RootMoves[multiPV - 1].score, PawnValueMg);
1378     int weakness = 120 - 2 * level;
1379     int maxScore = -VALUE_INFINITE;
1380
1381     // Choose best move. For each move score we add two terms both dependent on
1382     // weakness. One deterministic and bigger for weaker levels, and one random,
1383     // then we choose the move with the resulting highest score.
1384     for (size_t i = 0; i < multiPV; ++i)
1385     {
1386         // This is our magic formula
1387         int push = (  weakness * int(RootMoves[0].score - RootMoves[i].score)
1388                     + variance * (rng.rand<unsigned>() % weakness)) / 128;
1389
1390         if (RootMoves[i].score + push > maxScore)
1391         {
1392             maxScore = RootMoves[i].score + push;
1393             best = RootMoves[i].pv[0];
1394         }
1395     }
1396     return best;
1397   }
1398
1399 } // namespace
1400
1401
1402 /// UCI::pv() formats PV information according to the UCI protocol. UCI requires
1403 /// that all (if any) unsearched PV lines are sent using a previous search score.
1404
1405 string UCI::pv(const Position& pos, Depth depth, Value alpha, Value beta) {
1406
1407   std::stringstream ss;
1408   Time::point elapsed = Time::now() - SearchTime + 1;
1409   size_t multiPV = std::min((size_t)Options["MultiPV"], RootMoves.size());
1410   int selDepth = 0;
1411
1412   for (Thread* th : Threads)
1413       if (th->maxPly > selDepth)
1414           selDepth = th->maxPly;
1415
1416   for (size_t i = 0; i < multiPV; ++i)
1417   {
1418       bool updated = (i <= PVIdx);
1419
1420       if (depth == ONE_PLY && !updated)
1421           continue;
1422
1423       Depth d = updated ? depth : depth - ONE_PLY;
1424       Value v = updated ? RootMoves[i].score : RootMoves[i].previousScore;
1425
1426       bool tb = TB::RootInTB && abs(v) < VALUE_MATE - MAX_PLY;
1427       v = tb ? TB::Score : v;
1428
1429       if (ss.rdbuf()->in_avail()) // Not at first line
1430           ss << "\n";
1431
1432       ss << "info"
1433          << " depth "    << d / ONE_PLY
1434          << " seldepth " << selDepth
1435          << " multipv "  << i + 1
1436          << " score "    << UCI::value(v);
1437
1438       if (!tb && i == PVIdx)
1439           ss << (v >= beta ? " lowerbound" : v <= alpha ? " upperbound" : "");
1440
1441       ss << " nodes "    << pos.nodes_searched()
1442          << " nps "      << pos.nodes_searched() * 1000 / elapsed;
1443
1444       if (elapsed > 1000) // Earlier makes little sense
1445           ss << " hashfull " << TT.hashfull();
1446
1447       ss << " tbhits "   << TB::Hits
1448          << " time "     << elapsed
1449          << " pv";
1450
1451       for (Move m : RootMoves[i].pv)
1452           ss << " " << UCI::move(m, pos.is_chess960());
1453   }
1454
1455   return ss.str();
1456 }
1457
1458
1459 /// RootMove::insert_pv_in_tt() is called at the end of a search iteration, and
1460 /// inserts the PV back into the TT. This makes sure the old PV moves are searched
1461 /// first, even if the old TT entries have been overwritten.
1462
1463 void RootMove::insert_pv_in_tt(Position& pos) {
1464
1465   StateInfo state[MAX_PLY], *st = state;
1466   bool ttHit;
1467
1468   for (Move m : pv)
1469   {
1470       assert(MoveList<LEGAL>(pos).contains(m));
1471
1472       TTEntry* tte = TT.probe(pos.key(), ttHit);
1473
1474       if (!ttHit || tte->move() != m) // Don't overwrite correct entries
1475           tte->save(pos.key(), VALUE_NONE, BOUND_NONE, DEPTH_NONE, m, VALUE_NONE, TT.generation());
1476
1477       pos.do_move(m, *st++);
1478   }
1479
1480   for (size_t i = pv.size(); i > 0; )
1481       pos.undo_move(pv[--i]);
1482 }
1483
1484
1485 /// RootMove::extract_ponder_from_tt() is called in case we have no ponder move before
1486 /// exiting the search, for instance in case we stop the search during a fail high at
1487 /// root. We try hard to have a ponder move to return to the GUI, otherwise in case of
1488 /// 'ponder on' we have nothing to think on.
1489
1490 bool RootMove::extract_ponder_from_tt(Position& pos)
1491 {
1492     StateInfo st;
1493     bool ttHit;
1494
1495     assert(pv.size() == 1);
1496
1497     pos.do_move(pv[0], st);
1498     TTEntry* tte = TT.probe(pos.key(), ttHit);
1499     pos.undo_move(pv[0]);
1500
1501     if (ttHit)
1502     {
1503         Move m = tte->move(); // Local copy to be SMP safe
1504         if (MoveList<LEGAL>(pos).contains(m))
1505            return pv.push_back(m), true;
1506     }
1507
1508     return false;
1509 }
1510
1511
1512 /// Thread::idle_loop() is where the thread is parked when it has no work to do
1513
1514 void Thread::idle_loop() {
1515
1516   // Pointer 'this_sp' is not null only if we are called from split(), and not
1517   // at the thread creation. This means we are the split point's master.
1518   SplitPoint* this_sp = splitPointsSize ? activeSplitPoint : nullptr;
1519
1520   assert(!this_sp || (this_sp->masterThread == this && searching));
1521
1522   while (!exit)
1523   {
1524       // If this thread has been assigned work, launch a search
1525       while (searching)
1526       {
1527           Threads.mutex.lock();
1528
1529           assert(activeSplitPoint);
1530           SplitPoint* sp = activeSplitPoint;
1531
1532           Threads.mutex.unlock();
1533
1534           Stack stack[MAX_PLY+4], *ss = stack+2; // To allow referencing (ss-2) and (ss+2)
1535           Position pos(*sp->pos, this);
1536
1537           std::memcpy(ss-2, sp->ss-2, 5 * sizeof(Stack));
1538           ss->splitPoint = sp;
1539
1540           sp->mutex.lock();
1541
1542           assert(activePosition == nullptr);
1543
1544           activePosition = &pos;
1545
1546           if (sp->nodeType == NonPV)
1547               search<NonPV, true>(pos, ss, sp->alpha, sp->beta, sp->depth, sp->cutNode);
1548
1549           else if (sp->nodeType == PV)
1550               search<PV, true>(pos, ss, sp->alpha, sp->beta, sp->depth, sp->cutNode);
1551
1552           else if (sp->nodeType == Root)
1553               search<Root, true>(pos, ss, sp->alpha, sp->beta, sp->depth, sp->cutNode);
1554
1555           else
1556               assert(false);
1557
1558           assert(searching);
1559
1560           searching = false;
1561           activePosition = nullptr;
1562           sp->slavesMask.reset(idx);
1563           sp->allSlavesSearching = false;
1564           sp->nodes += pos.nodes_searched();
1565
1566           // Wake up the master thread so to allow it to return from the idle
1567           // loop in case we are the last slave of the split point.
1568           if (    this != sp->masterThread
1569               &&  sp->slavesMask.none())
1570           {
1571               assert(!sp->masterThread->searching);
1572               sp->masterThread->notify_one();
1573           }
1574
1575           // After releasing the lock we can't access any SplitPoint related data
1576           // in a safe way because it could have been released under our feet by
1577           // the sp master.
1578           sp->mutex.unlock();
1579
1580           // Try to late join to another split point if none of its slaves has
1581           // already finished.
1582           if (Threads.size() > 2)
1583               for (size_t i = 0; i < Threads.size(); ++i)
1584               {
1585                   const int size = Threads[i]->splitPointsSize; // Local copy
1586                   sp = size ? &Threads[i]->splitPoints[size - 1] : nullptr;
1587
1588                   if (   sp
1589                       && sp->allSlavesSearching
1590                       && available_to(Threads[i]))
1591                   {
1592                       // Recheck the conditions under lock protection
1593                       Threads.mutex.lock();
1594                       sp->mutex.lock();
1595
1596                       if (   sp->allSlavesSearching
1597                           && available_to(Threads[i]))
1598                       {
1599                            sp->slavesMask.set(idx);
1600                            activeSplitPoint = sp;
1601                            searching = true;
1602                       }
1603
1604                       sp->mutex.unlock();
1605                       Threads.mutex.unlock();
1606
1607                       break; // Just a single attempt
1608                   }
1609               }
1610       }
1611
1612       // Grab the lock to avoid races with Thread::notify_one()
1613       std::unique_lock<std::mutex> lk(mutex);
1614
1615       // If we are master and all slaves have finished then exit idle_loop
1616       if (this_sp && this_sp->slavesMask.none())
1617       {
1618           assert(!searching);
1619           break;
1620       }
1621
1622       // If we are not searching, wait for a condition to be signaled instead of
1623       // wasting CPU time polling for work.
1624       if (!searching && !exit)
1625           sleepCondition.wait(lk);
1626   }
1627 }
1628
1629
1630 /// check_time() is called by the timer thread when the timer triggers. It is
1631 /// used to print debug info and, more importantly, to detect when we are out of
1632 /// available time and thus stop the search.
1633
1634 void check_time() {
1635
1636   static Time::point lastInfoTime = Time::now();
1637   Time::point elapsed = Time::now() - SearchTime;
1638
1639   if (Time::now() - lastInfoTime >= 1000)
1640   {
1641       lastInfoTime = Time::now();
1642       dbg_print();
1643   }
1644
1645   // An engine may not stop pondering until told so by the GUI
1646   if (Limits.ponder)
1647       return;
1648
1649   if (Limits.use_time_management())
1650   {
1651       bool stillAtFirstMove =    Signals.firstRootMove
1652                              && !Signals.failedLowAtRoot
1653                              &&  elapsed > TimeMgr.available_time() * 75 / 100;
1654
1655       if (   stillAtFirstMove
1656           || elapsed > TimeMgr.maximum_time() - 2 * TimerThread::Resolution)
1657           Signals.stop = true;
1658   }
1659   else if (Limits.movetime && elapsed >= Limits.movetime)
1660       Signals.stop = true;
1661
1662   else if (Limits.nodes)
1663   {
1664       Threads.mutex.lock();
1665
1666       int64_t nodes = RootPos.nodes_searched();
1667
1668       // Loop across all split points and sum accumulated SplitPoint nodes plus
1669       // all the currently active positions nodes.
1670       for (Thread* th : Threads)
1671           for (int i = 0; i < th->splitPointsSize; ++i)
1672           {
1673               SplitPoint& sp = th->splitPoints[i];
1674
1675               sp.mutex.lock();
1676
1677               nodes += sp.nodes;
1678
1679               for (size_t idx = 0; idx < Threads.size(); ++idx)
1680                   if (sp.slavesMask.test(idx) && Threads[idx]->activePosition)
1681                       nodes += Threads[idx]->activePosition->nodes_searched();
1682
1683               sp.mutex.unlock();
1684           }
1685
1686       Threads.mutex.unlock();
1687
1688       if (nodes >= Limits.nodes)
1689           Signals.stop = true;
1690   }
1691 }