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