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