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