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