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