]> git.sesse.net Git - stockfish/blob - src/search.cpp
Rewrite how uci info is sent to GUI
[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-2010 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 <cassert>
21 #include <cmath>
22 #include <cstring>
23 #include <fstream>
24 #include <iostream>
25 #include <sstream>
26 #include <vector>
27
28 #include "book.h"
29 #include "evaluate.h"
30 #include "history.h"
31 #include "misc.h"
32 #include "move.h"
33 #include "movegen.h"
34 #include "movepick.h"
35 #include "search.h"
36 #include "timeman.h"
37 #include "thread.h"
38 #include "tt.h"
39 #include "ucioption.h"
40
41 using std::cout;
42 using std::endl;
43
44 namespace {
45
46   // Set to true to force running with one thread. Used for debugging
47   const bool FakeSplit = false;
48
49   // Different node types, used as template parameter
50   enum NodeType { Root, PV, NonPV, SplitPointPV, SplitPointNonPV };
51
52   // RootMove struct is used for moves at the root of the tree. For each root
53   // move, we store two scores, a node count, and a PV (really a refutation
54   // in the case of moves which fail low). Value pv_score is normally set at
55   // -VALUE_INFINITE for all non-pv moves, while non_pv_score is computed
56   // according to the order in which moves are returned by MovePicker.
57   struct RootMove {
58
59     RootMove();
60     RootMove(const RootMove& rm) { *this = rm; }
61     RootMove& operator=(const RootMove& rm);
62
63     // RootMove::operator<() is the comparison function used when
64     // sorting the moves. A move m1 is considered to be better
65     // than a move m2 if it has an higher pv_score, or if it has
66     // equal pv_score but m1 has the higher non_pv_score. In this way
67     // we are guaranteed that PV moves are always sorted as first.
68     bool operator<(const RootMove& m) const {
69       return pv_score != m.pv_score ? pv_score < m.pv_score
70                                     : non_pv_score < m.non_pv_score;
71     }
72
73     void extract_pv_from_tt(Position& pos);
74     void insert_pv_in_tt(Position& pos);
75
76     int64_t nodes;
77     Value pv_score;
78     Value non_pv_score;
79     Move pv[PLY_MAX_PLUS_2];
80   };
81
82   // RootMoveList struct is just a vector of RootMove objects,
83   // with an handful of methods above the standard ones.
84   struct RootMoveList : public std::vector<RootMove> {
85
86     typedef std::vector<RootMove> Base;
87
88     void init(Position& pos, Move searchMoves[]);
89     void sort() { insertion_sort<RootMove, Base::iterator>(begin(), end()); }
90     void sort_first(int n) { insertion_sort<RootMove, Base::iterator>(begin(), begin() + n); }
91
92     int bestMoveChanges;
93   };
94
95
96   /// Constants
97
98   // Lookup table to check if a Piece is a slider and its access function
99   const bool Slidings[18] = { 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1 };
100   inline bool piece_is_slider(Piece p) { return Slidings[p]; }
101
102   // Step 6. Razoring
103
104   // Maximum depth for razoring
105   const Depth RazorDepth = 4 * ONE_PLY;
106
107   // Dynamic razoring margin based on depth
108   inline Value razor_margin(Depth d) { return Value(0x200 + 0x10 * int(d)); }
109
110   // Maximum depth for use of dynamic threat detection when null move fails low
111   const Depth ThreatDepth = 5 * ONE_PLY;
112
113   // Step 9. Internal iterative deepening
114
115   // Minimum depth for use of internal iterative deepening
116   const Depth IIDDepth[] = { 8 * ONE_PLY, 5 * ONE_PLY };
117
118   // At Non-PV nodes we do an internal iterative deepening search
119   // when the static evaluation is bigger then beta - IIDMargin.
120   const Value IIDMargin = Value(0x100);
121
122   // Step 11. Decide the new search depth
123
124   // Extensions. Array index 0 is used for non-PV nodes, index 1 for PV nodes
125   const Depth CheckExtension[]         = { ONE_PLY / 2, ONE_PLY / 1 };
126   const Depth PawnEndgameExtension[]   = { ONE_PLY / 1, ONE_PLY / 1 };
127   const Depth PawnPushTo7thExtension[] = { ONE_PLY / 2, ONE_PLY / 2 };
128   const Depth PassedPawnExtension[]    = {  DEPTH_ZERO, ONE_PLY / 2 };
129
130   // Minimum depth for use of singular extension
131   const Depth SingularExtensionDepth[] = { 8 * ONE_PLY, 6 * ONE_PLY };
132
133   // Step 12. Futility pruning
134
135   // Futility margin for quiescence search
136   const Value FutilityMarginQS = Value(0x80);
137
138   // Futility lookup tables (initialized at startup) and their access functions
139   Value FutilityMargins[16][64]; // [depth][moveNumber]
140   int FutilityMoveCounts[32];    // [depth]
141
142   inline Value futility_margin(Depth d, int mn) {
143
144     return d < 7 * ONE_PLY ? FutilityMargins[Max(d, 1)][Min(mn, 63)]
145                            : 2 * VALUE_INFINITE;
146   }
147
148   inline int futility_move_count(Depth d) {
149
150     return d < 16 * ONE_PLY ? FutilityMoveCounts[d] : MAX_MOVES;
151   }
152
153   // Step 14. Reduced search
154
155   // Reduction lookup tables (initialized at startup) and their access function
156   int8_t Reductions[2][64][64]; // [pv][depth][moveNumber]
157
158   template <bool PvNode> inline Depth reduction(Depth d, int mn) {
159
160     return (Depth) Reductions[PvNode][Min(d / ONE_PLY, 63)][Min(mn, 63)];
161   }
162
163   // Easy move margin. An easy move candidate must be at least this much
164   // better than the second best move.
165   const Value EasyMoveMargin = Value(0x200);
166
167
168   /// Namespace variables
169
170   // Root move list
171   RootMoveList Rml;
172
173   // MultiPV mode
174   int MultiPV, UCIMultiPV;
175
176   // Time management variables
177   bool StopOnPonderhit, FirstRootMove, StopRequest, QuitRequest, AspirationFailLow;
178   TimeManager TimeMgr;
179   SearchLimits Limits;
180
181   // Log file
182   std::ofstream LogFile;
183
184   // Skill level adjustment
185   int SkillLevel;
186   bool SkillLevelEnabled;
187
188   // Node counters, used only by thread[0] but try to keep in different cache
189   // lines (64 bytes each) from the heavy multi-thread read accessed variables.
190   bool SendSearchedNodes;
191   int NodesSincePoll;
192   int NodesBetweenPolls = 30000;
193
194   // History table
195   History H;
196
197
198   /// Local functions
199
200   Move id_loop(Position& pos, Move searchMoves[], Move* ponderMove);
201
202   template <NodeType NT>
203   Value search(Position& pos, SearchStack* ss, Value alpha, Value beta, Depth depth);
204
205   template <NodeType NT>
206   Value qsearch(Position& pos, SearchStack* ss, Value alpha, Value beta, Depth depth);
207
208   bool check_is_dangerous(Position &pos, Move move, Value futilityBase, Value beta, Value *bValue);
209   bool connected_moves(const Position& pos, Move m1, Move m2);
210   Value value_to_tt(Value v, int ply);
211   Value value_from_tt(Value v, int ply);
212   bool ok_to_use_TT(const TTEntry* tte, Depth depth, Value beta, int ply);
213   bool connected_threat(const Position& pos, Move m, Move threat);
214   Value refine_eval(const TTEntry* tte, Value defaultEval, int ply);
215   void update_history(const Position& pos, Move move, Depth depth, Move movesSearched[], int moveCount);
216   void update_gains(const Position& pos, Move move, Value before, Value after);
217   void do_skill_level(Move* best, Move* ponder);
218
219   int current_search_time(int set = 0);
220   std::string score_to_uci(Value v, Value alpha, Value beta);
221   std::string speed_to_uci(int64_t nodes);
222   std::string pv_to_uci(Move pv[], int pvNum);
223   std::string depth_to_uci(Depth depth);
224   void poll(const Position& pos);
225   void wait_for_stop_or_ponderhit();
226
227   // MovePickerExt template class extends MovePicker and allows to choose at compile
228   // time the proper moves source according to the type of node. In the default case
229   // we simply create and use a standard MovePicker object.
230   template<NodeType> struct MovePickerExt : public MovePicker {
231
232     MovePickerExt(const Position& p, Move ttm, Depth d, const History& h, SearchStack* ss, Value b)
233                   : MovePicker(p, ttm, d, h, ss, b) {}
234
235     RootMove& current() { assert(false); return Rml[0]; } // Dummy, needed to compile
236   };
237
238   // In case of a SpNode we use split point's shared MovePicker object as moves source
239   template<> struct MovePickerExt<SplitPointNonPV> : public MovePickerExt<NonPV> {
240
241     MovePickerExt(const Position& p, Move ttm, Depth d, const History& h, SearchStack* ss, Value b)
242                   : MovePickerExt<NonPV>(p, ttm, d, h, ss, b), mp(ss->sp->mp) {}
243
244     Move get_next_move() { return mp->get_next_move(); }
245     MovePicker* mp;
246   };
247
248   template<> struct MovePickerExt<SplitPointPV> : public MovePickerExt<SplitPointNonPV> {
249
250     MovePickerExt(const Position& p, Move ttm, Depth d, const History& h, SearchStack* ss, Value b)
251                   : MovePickerExt<SplitPointNonPV>(p, ttm, d, h, ss, b) {}
252   };
253
254   // In case of a Root node we use RootMoveList as moves source
255   template<> struct MovePickerExt<Root> : public MovePicker {
256
257     MovePickerExt(const Position&, Move, Depth, const History&, SearchStack*, Value);
258     RootMove& current() { return Rml[cur]; }
259     Move get_next_move() { return ++cur < (int)Rml.size() ? Rml[cur].pv[0] : MOVE_NONE; }
260
261     int cur;
262   };
263
264   // Overload operator<<() to make it easier to print moves in a coordinate
265   // notation compatible with UCI protocol.
266   std::ostream& operator<<(std::ostream& os, Move m) {
267
268     bool chess960 = (os.iword(0) != 0); // See set960()
269     return os << move_to_uci(m, chess960);
270   }
271
272   // When formatting a move for std::cout we must know if we are in Chess960
273   // or not. To keep using the handy operator<<() on the move the trick is to
274   // embed this flag in the stream itself. Function-like named enum set960 is
275   // used as a custom manipulator and the stream internal general-purpose array,
276   // accessed through ios_base::iword(), is used to pass the flag to the move's
277   // operator<<() that will read it to properly format castling moves.
278   enum set960 {};
279
280   std::ostream& operator<< (std::ostream& os, const set960& f) {
281
282     os.iword(0) = int(f);
283     return os;
284   }
285
286   // extension() decides whether a move should be searched with normal depth,
287   // or with extended depth. Certain classes of moves (checking moves, in
288   // particular) are searched with bigger depth than ordinary moves and in
289   // any case are marked as 'dangerous'. Note that also if a move is not
290   // extended, as example because the corresponding UCI option is set to zero,
291   // the move is marked as 'dangerous' so, at least, we avoid to prune it.
292   template <bool PvNode>
293   FORCE_INLINE Depth extension(const Position& pos, Move m, bool captureOrPromotion,
294                                bool moveIsCheck, bool* dangerous) {
295     assert(m != MOVE_NONE);
296
297     Depth result = DEPTH_ZERO;
298     *dangerous = moveIsCheck;
299
300     if (moveIsCheck && pos.see_sign(m) >= 0)
301         result += CheckExtension[PvNode];
302
303     if (pos.type_of_piece_on(move_from(m)) == PAWN)
304     {
305         Color c = pos.side_to_move();
306         if (relative_rank(c, move_to(m)) == RANK_7)
307         {
308             result += PawnPushTo7thExtension[PvNode];
309             *dangerous = true;
310         }
311         if (pos.pawn_is_passed(c, move_to(m)))
312         {
313             result += PassedPawnExtension[PvNode];
314             *dangerous = true;
315         }
316     }
317
318     if (   captureOrPromotion
319         && pos.type_of_piece_on(move_to(m)) != PAWN
320         && (  pos.non_pawn_material(WHITE) + pos.non_pawn_material(BLACK)
321             - pos.midgame_value_of_piece_on(move_to(m)) == VALUE_ZERO)
322         && !move_is_special(m))
323     {
324         result += PawnEndgameExtension[PvNode];
325         *dangerous = true;
326     }
327
328     return Min(result, ONE_PLY);
329   }
330
331 } // namespace
332
333
334 /// init_search() is called during startup to initialize various lookup tables
335
336 void init_search() {
337
338   int d;  // depth (ONE_PLY == 2)
339   int hd; // half depth (ONE_PLY == 1)
340   int mc; // moveCount
341
342   // Init reductions array
343   for (hd = 1; hd < 64; hd++) for (mc = 1; mc < 64; mc++)
344   {
345       double    pvRed = log(double(hd)) * log(double(mc)) / 3.0;
346       double nonPVRed = 0.33 + log(double(hd)) * log(double(mc)) / 2.25;
347       Reductions[1][hd][mc] = (int8_t) (   pvRed >= 1.0 ? floor(   pvRed * int(ONE_PLY)) : 0);
348       Reductions[0][hd][mc] = (int8_t) (nonPVRed >= 1.0 ? floor(nonPVRed * int(ONE_PLY)) : 0);
349   }
350
351   // Init futility margins array
352   for (d = 1; d < 16; d++) for (mc = 0; mc < 64; mc++)
353       FutilityMargins[d][mc] = Value(112 * int(log(double(d * d) / 2) / log(2.0) + 1.001) - 8 * mc + 45);
354
355   // Init futility move count array
356   for (d = 0; d < 32; d++)
357       FutilityMoveCounts[d] = int(3.001 + 0.25 * pow(d, 2.0));
358 }
359
360
361 /// perft() is our utility to verify move generation. All the leaf nodes up to
362 /// the given depth are generated and counted and the sum returned.
363
364 int64_t perft(Position& pos, Depth depth) {
365
366   MoveStack mlist[MAX_MOVES];
367   StateInfo st;
368   Move m;
369   int64_t sum = 0;
370
371   // Generate all legal moves
372   MoveStack* last = generate<MV_LEGAL>(pos, mlist);
373
374   // If we are at the last ply we don't need to do and undo
375   // the moves, just to count them.
376   if (depth <= ONE_PLY)
377       return int(last - mlist);
378
379   // Loop through all legal moves
380   CheckInfo ci(pos);
381   for (MoveStack* cur = mlist; cur != last; cur++)
382   {
383       m = cur->move;
384       pos.do_move(m, st, ci, pos.move_gives_check(m, ci));
385       sum += perft(pos, depth - ONE_PLY);
386       pos.undo_move(m);
387   }
388   return sum;
389 }
390
391
392 /// think() is the external interface to Stockfish's search, and is called when
393 /// the program receives the UCI 'go' command. It initializes various global
394 /// variables, and calls id_loop(). It returns false when a "quit" command is
395 /// received during the search.
396
397 bool think(Position& pos, const SearchLimits& limits, Move searchMoves[]) {
398
399   static Book book;
400
401   // Initialize global search-related variables
402   StopOnPonderhit = StopRequest = QuitRequest = AspirationFailLow = SendSearchedNodes = false;
403   NodesSincePoll = 0;
404   current_search_time(get_system_time());
405   Limits = limits;
406   TimeMgr.init(Limits, pos.startpos_ply_counter());
407
408   // Set output steram in normal or chess960 mode
409   cout << set960(pos.is_chess960());
410
411   // Set best NodesBetweenPolls interval to avoid lagging under time pressure
412   if (Limits.maxNodes)
413       NodesBetweenPolls = Min(Limits.maxNodes, 30000);
414   else if (Limits.time && Limits.time < 1000)
415       NodesBetweenPolls = 1000;
416   else if (Limits.time && Limits.time < 5000)
417       NodesBetweenPolls = 5000;
418   else
419       NodesBetweenPolls = 30000;
420
421   // Look for a book move
422   if (Options["OwnBook"].value<bool>())
423   {
424       if (Options["Book File"].value<std::string>() != book.name())
425           book.open(Options["Book File"].value<std::string>());
426
427       Move bookMove = book.get_move(pos, Options["Best Book Move"].value<bool>());
428       if (bookMove != MOVE_NONE)
429       {
430           if (Limits.ponder)
431               wait_for_stop_or_ponderhit();
432
433           cout << "bestmove " << bookMove << endl;
434           return !QuitRequest;
435       }
436   }
437
438   // Read UCI options
439   UCIMultiPV = Options["MultiPV"].value<int>();
440   SkillLevel = Options["Skill Level"].value<int>();
441
442   read_evaluation_uci_options(pos.side_to_move());
443   Threads.read_uci_options();
444
445   // If needed allocate pawn and material hash tables and adjust TT size
446   Threads.init_hash_tables();
447   TT.set_size(Options["Hash"].value<int>());
448
449   if (Options["Clear Hash"].value<bool>())
450   {
451       Options["Clear Hash"].set_value("false");
452       TT.clear();
453   }
454
455   // Do we have to play with skill handicap? In this case enable MultiPV that
456   // we will use behind the scenes to retrieve a set of possible moves.
457   SkillLevelEnabled = (SkillLevel < 20);
458   MultiPV = (SkillLevelEnabled ? Max(UCIMultiPV, 4) : UCIMultiPV);
459
460   // Wake up needed threads and reset maxPly counter
461   for (int i = 0; i < Threads.size(); i++)
462   {
463       Threads[i].wake_up();
464       Threads[i].maxPly = 0;
465   }
466
467   // Write to log file and keep it open to be accessed during the search
468   if (Options["Use Search Log"].value<bool>())
469   {
470       std::string name = Options["Search Log Filename"].value<std::string>();
471       LogFile.open(name.c_str(), std::ios::out | std::ios::app);
472
473       if (LogFile.is_open())
474           LogFile << "\nSearching: "  << pos.to_fen()
475                   << "\ninfinite: "   << Limits.infinite
476                   << " ponder: "      << Limits.ponder
477                   << " time: "        << Limits.time
478                   << " increment: "   << Limits.increment
479                   << " moves to go: " << Limits.movesToGo
480                   << endl;
481   }
482
483   // We're ready to start thinking. Call the iterative deepening loop function
484   Move ponderMove = MOVE_NONE;
485   Move bestMove = id_loop(pos, searchMoves, &ponderMove);
486
487   // Write final search statistics and close log file
488   if (LogFile.is_open())
489   {
490       int t = current_search_time();
491
492       LogFile << "Nodes: "          << pos.nodes_searched()
493               << "\nNodes/second: " << (t > 0 ? pos.nodes_searched() * 1000 / t : 0)
494               << "\nBest move: "    << move_to_san(pos, bestMove);
495
496       StateInfo st;
497       pos.do_move(bestMove, st);
498       LogFile << "\nPonder move: " << move_to_san(pos, ponderMove) << endl;
499       pos.undo_move(bestMove); // Return from think() with unchanged position
500       LogFile.close();
501   }
502
503   // This makes all the threads to go to sleep
504   Threads.set_size(1);
505
506   // If we are pondering or in infinite search, we shouldn't print the
507   // best move before we are told to do so.
508   if (!StopRequest && (Limits.ponder || Limits.infinite))
509       wait_for_stop_or_ponderhit();
510
511   // Could be MOVE_NONE when searching on a stalemate position
512   cout << "bestmove " << bestMove;
513
514   // UCI protol is not clear on allowing sending an empty ponder move, instead
515   // it is clear that ponder move is optional. So skip it if empty.
516   if (ponderMove != MOVE_NONE)
517       cout << " ponder " << ponderMove;
518
519   cout << endl;
520
521   return !QuitRequest;
522 }
523
524
525 namespace {
526
527   // id_loop() is the main iterative deepening loop. It calls search() repeatedly
528   // with increasing depth until the allocated thinking time has been consumed,
529   // user stops the search, or the maximum search depth is reached.
530
531   Move id_loop(Position& pos, Move searchMoves[], Move* ponderMove) {
532
533     SearchStack ss[PLY_MAX_PLUS_2];
534     Value bestValues[PLY_MAX_PLUS_2];
535     int bestMoveChanges[PLY_MAX_PLUS_2];
536     int depth, aspirationDelta;
537     Value value, alpha, beta;
538     Move bestMove, easyMove, skillBest, skillPonder;
539
540     // Initialize stuff before a new search
541     memset(ss, 0, 4 * sizeof(SearchStack));
542     TT.new_search();
543     H.clear();
544     *ponderMove = bestMove = easyMove = skillBest = skillPonder = MOVE_NONE;
545     depth = aspirationDelta = 0;
546     alpha = -VALUE_INFINITE, beta = VALUE_INFINITE;
547     ss->currentMove = MOVE_NULL; // Hack to skip update_gains()
548
549     // Moves to search are verified and copied
550     Rml.init(pos, searchMoves);
551
552     // Handle special case of searching on a mate/stalemate position
553     if (!Rml.size())
554     {
555         cout << "info" << depth_to_uci(DEPTH_ZERO)
556              << score_to_uci(pos.in_check() ? -VALUE_MATE : VALUE_DRAW, alpha, beta) << endl;
557
558         return MOVE_NONE;
559     }
560
561     // Iterative deepening loop until requested to stop or target depth reached
562     while (!StopRequest && ++depth <= PLY_MAX && (!Limits.maxDepth || depth <= Limits.maxDepth))
563     {
564         Rml.bestMoveChanges = 0;
565
566         // Calculate dynamic aspiration window based on previous iterations
567         if (MultiPV == 1 && depth >= 5 && abs(bestValues[depth - 1]) < VALUE_KNOWN_WIN)
568         {
569             int prevDelta1 = bestValues[depth - 1] - bestValues[depth - 2];
570             int prevDelta2 = bestValues[depth - 2] - bestValues[depth - 3];
571
572             aspirationDelta = Min(Max(abs(prevDelta1) + abs(prevDelta2) / 2, 16), 24);
573             aspirationDelta = (aspirationDelta + 7) / 8 * 8; // Round to match grainSize
574
575             alpha = Max(bestValues[depth - 1] - aspirationDelta, -VALUE_INFINITE);
576             beta  = Min(bestValues[depth - 1] + aspirationDelta,  VALUE_INFINITE);
577         }
578
579         // Start with a small aspiration window and, in case of fail high/low,
580         // research with bigger window until not failing high/low anymore.
581         do {
582             // Search starting from ss+1 to allow calling update_gains()
583             value = search<Root>(pos, ss+1, alpha, beta, depth * ONE_PLY);
584
585             // Write PV back to transposition table in case the relevant entries
586             // have been overwritten during the search.
587             for (int i = 0; i < Min(MultiPV, (int)Rml.size()); i++)
588                 Rml[i].insert_pv_in_tt(pos);
589
590             // Value cannot be trusted. Break out immediately!
591             if (StopRequest)
592                 break;
593
594             // Send full PV info to GUI if we are going to leave the loop or
595             // if we have a fail high/low and we are deep in the search.
596             if ((value > alpha && value < beta) || current_search_time() > 2000)
597                 for (int i = 0; i < Min(UCIMultiPV, (int)Rml.size()); i++)
598                     cout << "info"
599                          << depth_to_uci(depth * ONE_PLY)
600                          << score_to_uci(Rml[i].pv_score, alpha, beta)
601                          << speed_to_uci(pos.nodes_searched())
602                          << pv_to_uci(Rml[i].pv, i + 1) << endl;
603
604             // In case of failing high/low increase aspiration window and research,
605             // otherwise exit the fail high/low loop.
606             if (value >= beta)
607             {
608                 beta = Min(beta + aspirationDelta, VALUE_INFINITE);
609                 aspirationDelta += aspirationDelta / 2;
610             }
611             else if (value <= alpha)
612             {
613                 AspirationFailLow = true;
614                 StopOnPonderhit = false;
615
616                 alpha = Max(alpha - aspirationDelta, -VALUE_INFINITE);
617                 aspirationDelta += aspirationDelta / 2;
618             }
619             else
620                 break;
621
622         } while (abs(value) < VALUE_KNOWN_WIN);
623
624         // Collect info about search result
625         bestMove = Rml[0].pv[0];
626         *ponderMove = Rml[0].pv[1];
627         bestValues[depth] = value;
628         bestMoveChanges[depth] = Rml.bestMoveChanges;
629
630         // Do we need to pick now the best and the ponder moves ?
631         if (SkillLevelEnabled && depth == 1 + SkillLevel)
632             do_skill_level(&skillBest, &skillPonder);
633
634         if (LogFile.is_open())
635             LogFile << pretty_pv(pos, depth, value, current_search_time(), Rml[0].pv) << endl;
636
637         // Init easyMove after first iteration or drop if differs from the best move
638         if (depth == 1 && (Rml.size() == 1 || Rml[0].pv_score > Rml[1].pv_score + EasyMoveMargin))
639             easyMove = bestMove;
640         else if (bestMove != easyMove)
641             easyMove = MOVE_NONE;
642
643         // Check for some early stop condition
644         if (!StopRequest && Limits.useTimeManagement())
645         {
646             // Stop search early when the last two iterations returned a mate score
647             if (   depth >= 5
648                 && abs(bestValues[depth])     >= VALUE_MATE_IN_PLY_MAX
649                 && abs(bestValues[depth - 1]) >= VALUE_MATE_IN_PLY_MAX)
650                 StopRequest = true;
651
652             // Stop search early if one move seems to be much better than the
653             // others or if there is only a single legal move. Also in the latter
654             // case we search up to some depth anyway to get a proper score.
655             if (   depth >= 7
656                 && easyMove == bestMove
657                 && (   Rml.size() == 1
658                     ||(   Rml[0].nodes > (pos.nodes_searched() * 85) / 100
659                        && current_search_time() > TimeMgr.available_time() / 16)
660                     ||(   Rml[0].nodes > (pos.nodes_searched() * 98) / 100
661                        && current_search_time() > TimeMgr.available_time() / 32)))
662                 StopRequest = true;
663
664             // Take in account some extra time if the best move has changed
665             if (depth > 4 && depth < 50)
666                 TimeMgr.pv_instability(bestMoveChanges[depth], bestMoveChanges[depth - 1]);
667
668             // Stop search if most of available time is already consumed. We probably don't
669             // have enough time to search the first move at the next iteration anyway.
670             if (current_search_time() > (TimeMgr.available_time() * 62) / 100)
671                 StopRequest = true;
672
673             // If we are allowed to ponder do not stop the search now but keep pondering
674             if (StopRequest && Limits.ponder)
675             {
676                 StopRequest = false;
677                 StopOnPonderhit = true;
678             }
679         }
680     }
681
682     // When using skills overwrite best and ponder moves with the sub-optimal ones
683     if (SkillLevelEnabled)
684     {
685         if (skillBest == MOVE_NONE) // Still unassigned ?
686             do_skill_level(&skillBest, &skillPonder);
687
688         bestMove = skillBest;
689         *ponderMove = skillPonder;
690     }
691
692     return bestMove;
693   }
694
695
696   // search<>() is the main search function for both PV and non-PV nodes and for
697   // normal and SplitPoint nodes. When called just after a split point the search
698   // is simpler because we have already probed the hash table, done a null move
699   // search, and searched the first move before splitting, we don't have to repeat
700   // all this work again. We also don't need to store anything to the hash table
701   // here: This is taken care of after we return from the split point.
702
703   template <NodeType NT>
704   Value search(Position& pos, SearchStack* ss, Value alpha, Value beta, Depth depth) {
705
706     const bool PvNode   = (NT == PV || NT == Root || NT == SplitPointPV);
707     const bool SpNode   = (NT == SplitPointPV || NT == SplitPointNonPV);
708     const bool RootNode = (NT == Root);
709
710     assert(alpha >= -VALUE_INFINITE && alpha <= VALUE_INFINITE);
711     assert(beta > alpha && beta <= VALUE_INFINITE);
712     assert(PvNode || alpha == beta - 1);
713     assert(pos.thread() >= 0 && pos.thread() < Threads.size());
714
715     Move movesSearched[MAX_MOVES];
716     int64_t nodes;
717     StateInfo st;
718     const TTEntry *tte;
719     Key posKey;
720     Move ttMove, move, excludedMove, threatMove;
721     Depth ext, newDepth;
722     ValueType vt;
723     Value bestValue, value, oldAlpha;
724     Value refinedValue, nullValue, futilityBase, futilityValueScaled; // Non-PV specific
725     bool isPvMove, inCheck, singularExtensionNode, givesCheck, captureOrPromotion, dangerous;
726     int moveCount = 0, playedMoveCount = 0;
727     Thread& thread = Threads[pos.thread()];
728     SplitPoint* sp = NULL;
729
730     refinedValue = bestValue = value = -VALUE_INFINITE;
731     oldAlpha = alpha;
732     inCheck = pos.in_check();
733     ss->ply = (ss-1)->ply + 1;
734
735     // Used to send selDepth info to GUI
736     if (PvNode && thread.maxPly < ss->ply)
737         thread.maxPly = ss->ply;
738
739     if (SpNode)
740     {
741         sp = ss->sp;
742         tte = NULL;
743         ttMove = excludedMove = MOVE_NONE;
744         threatMove = sp->threatMove;
745         goto split_point_start;
746     }
747
748     // Step 1. Initialize node and poll. Polling can abort search
749     ss->currentMove = ss->bestMove = threatMove = (ss+1)->excludedMove = MOVE_NONE;
750     (ss+1)->skipNullMove = false; (ss+1)->reduction = DEPTH_ZERO;
751     (ss+2)->killers[0] = (ss+2)->killers[1] = MOVE_NONE;
752
753     if (pos.thread() == 0 && ++NodesSincePoll > NodesBetweenPolls)
754     {
755         NodesSincePoll = 0;
756         poll(pos);
757     }
758
759     // Step 2. Check for aborted search and immediate draw
760     if ((   StopRequest
761          || pos.is_draw<false>()
762          || ss->ply > PLY_MAX) && !RootNode)
763         return VALUE_DRAW;
764
765     // Step 3. Mate distance pruning
766     if (!RootNode)
767     {
768         alpha = Max(value_mated_in(ss->ply), alpha);
769         beta = Min(value_mate_in(ss->ply+1), beta);
770         if (alpha >= beta)
771             return alpha;
772     }
773
774     // Step 4. Transposition table lookup
775     // We don't want the score of a partial search to overwrite a previous full search
776     // TT value, so we use a different position key in case of an excluded move.
777     excludedMove = ss->excludedMove;
778     posKey = excludedMove ? pos.get_exclusion_key() : pos.get_key();
779
780     tte = TT.probe(posKey);
781     ttMove = tte ? tte->move() : MOVE_NONE;
782
783     // At PV nodes we check for exact scores, while at non-PV nodes we check for
784     // a fail high/low. Biggest advantage at probing at PV nodes is to have a
785     // smooth experience in analysis mode.
786     if (tte && (PvNode ? tte->depth() >= depth && tte->type() == VALUE_TYPE_EXACT
787                        : ok_to_use_TT(tte, depth, beta, ss->ply)))
788     {
789         TT.refresh(tte);
790         ss->bestMove = ttMove; // Can be MOVE_NONE
791         return value_from_tt(tte->value(), ss->ply);
792     }
793
794     // Step 5. Evaluate the position statically and update parent's gain statistics
795     if (inCheck)
796         ss->eval = ss->evalMargin = VALUE_NONE;
797     else if (tte)
798     {
799         assert(tte->static_value() != VALUE_NONE);
800
801         ss->eval = tte->static_value();
802         ss->evalMargin = tte->static_value_margin();
803         refinedValue = refine_eval(tte, ss->eval, ss->ply);
804     }
805     else
806     {
807         refinedValue = ss->eval = evaluate(pos, ss->evalMargin);
808         TT.store(posKey, VALUE_NONE, VALUE_TYPE_NONE, DEPTH_NONE, MOVE_NONE, ss->eval, ss->evalMargin);
809     }
810
811     // Save gain for the parent non-capture move
812     update_gains(pos, (ss-1)->currentMove, (ss-1)->eval, ss->eval);
813
814     // Step 6. Razoring (is omitted in PV nodes)
815     if (   !PvNode
816         &&  depth < RazorDepth
817         && !inCheck
818         &&  refinedValue + razor_margin(depth) < beta
819         &&  ttMove == MOVE_NONE
820         &&  abs(beta) < VALUE_MATE_IN_PLY_MAX
821         && !pos.has_pawn_on_7th(pos.side_to_move()))
822     {
823         Value rbeta = beta - razor_margin(depth);
824         Value v = qsearch<NonPV>(pos, ss, rbeta-1, rbeta, DEPTH_ZERO);
825         if (v < rbeta)
826             // Logically we should return (v + razor_margin(depth)), but
827             // surprisingly this did slightly weaker in tests.
828             return v;
829     }
830
831     // Step 7. Static null move pruning (is omitted in PV nodes)
832     // We're betting that the opponent doesn't have a move that will reduce
833     // the score by more than futility_margin(depth) if we do a null move.
834     if (   !PvNode
835         && !ss->skipNullMove
836         &&  depth < RazorDepth
837         && !inCheck
838         &&  refinedValue - futility_margin(depth, 0) >= beta
839         &&  abs(beta) < VALUE_MATE_IN_PLY_MAX
840         &&  pos.non_pawn_material(pos.side_to_move()))
841         return refinedValue - futility_margin(depth, 0);
842
843     // Step 8. Null move search with verification search (is omitted in PV nodes)
844     if (   !PvNode
845         && !ss->skipNullMove
846         &&  depth > ONE_PLY
847         && !inCheck
848         &&  refinedValue >= beta
849         &&  abs(beta) < VALUE_MATE_IN_PLY_MAX
850         &&  pos.non_pawn_material(pos.side_to_move()))
851     {
852         ss->currentMove = MOVE_NULL;
853
854         // Null move dynamic reduction based on depth
855         int R = 3 + (depth >= 5 * ONE_PLY ? depth / 8 : 0);
856
857         // Null move dynamic reduction based on value
858         if (refinedValue - PawnValueMidgame > beta)
859             R++;
860
861         pos.do_null_move(st);
862         (ss+1)->skipNullMove = true;
863         nullValue = depth-R*ONE_PLY < ONE_PLY ? -qsearch<NonPV>(pos, ss+1, -beta, -alpha, DEPTH_ZERO)
864                                               : - search<NonPV>(pos, ss+1, -beta, -alpha, depth-R*ONE_PLY);
865         (ss+1)->skipNullMove = false;
866         pos.undo_null_move();
867
868         if (nullValue >= beta)
869         {
870             // Do not return unproven mate scores
871             if (nullValue >= VALUE_MATE_IN_PLY_MAX)
872                 nullValue = beta;
873
874             if (depth < 6 * ONE_PLY)
875                 return nullValue;
876
877             // Do verification search at high depths
878             ss->skipNullMove = true;
879             Value v = search<NonPV>(pos, ss, alpha, beta, depth-R*ONE_PLY);
880             ss->skipNullMove = false;
881
882             if (v >= beta)
883                 return nullValue;
884         }
885         else
886         {
887             // The null move failed low, which means that we may be faced with
888             // some kind of threat. If the previous move was reduced, check if
889             // the move that refuted the null move was somehow connected to the
890             // move which was reduced. If a connection is found, return a fail
891             // low score (which will cause the reduced move to fail high in the
892             // parent node, which will trigger a re-search with full depth).
893             threatMove = (ss+1)->bestMove;
894
895             if (   depth < ThreatDepth
896                 && (ss-1)->reduction
897                 && threatMove != MOVE_NONE
898                 && connected_moves(pos, (ss-1)->currentMove, threatMove))
899                 return beta - 1;
900         }
901     }
902
903     // Step 9. ProbCut (is omitted in PV nodes)
904     // If we have a very good capture (i.e. SEE > seeValues[captured_piece_type])
905     // and a reduced search returns a value much above beta, we can (almost) safely
906     // prune the previous move.
907     if (   !PvNode
908         &&  depth >= RazorDepth + ONE_PLY
909         && !inCheck
910         && !ss->skipNullMove
911         &&  excludedMove == MOVE_NONE
912         &&  abs(beta) < VALUE_MATE_IN_PLY_MAX)
913     {
914         Value rbeta = beta + 200;
915         Depth rdepth = depth - ONE_PLY - 3 * ONE_PLY;
916
917         assert(rdepth >= ONE_PLY);
918
919         MovePicker mp(pos, ttMove, H, Position::see_value(pos.captured_piece_type()));
920         CheckInfo ci(pos);
921
922         while ((move = mp.get_next_move()) != MOVE_NONE)
923             if (pos.pl_move_is_legal(move, ci.pinned))
924             {
925                 pos.do_move(move, st, ci, pos.move_gives_check(move, ci));
926                 value = -search<NonPV>(pos, ss+1, -rbeta, -rbeta+1, rdepth);
927                 pos.undo_move(move);
928                 if (value >= rbeta)
929                     return value;
930             }
931     }
932
933     // Step 10. Internal iterative deepening
934     if (   depth >= IIDDepth[PvNode]
935         && ttMove == MOVE_NONE
936         && (PvNode || (!inCheck && ss->eval + IIDMargin >= beta)))
937     {
938         Depth d = (PvNode ? depth - 2 * ONE_PLY : depth / 2);
939
940         ss->skipNullMove = true;
941         search<PvNode ? PV : NonPV>(pos, ss, alpha, beta, d);
942         ss->skipNullMove = false;
943
944         tte = TT.probe(posKey);
945         ttMove = tte ? tte->move() : MOVE_NONE;
946     }
947
948 split_point_start: // At split points actual search starts from here
949
950     // Initialize a MovePicker object for the current position
951     MovePickerExt<NT> mp(pos, ttMove, depth, H, ss, PvNode ? -VALUE_INFINITE : beta);
952     CheckInfo ci(pos);
953     ss->bestMove = MOVE_NONE;
954     futilityBase = ss->eval + ss->evalMargin;
955     singularExtensionNode =   !RootNode
956                            && !SpNode
957                            && depth >= SingularExtensionDepth[PvNode]
958                            && ttMove != MOVE_NONE
959                            && !excludedMove // Do not allow recursive singular extension search
960                            && (tte->type() & VALUE_TYPE_LOWER)
961                            && tte->depth() >= depth - 3 * ONE_PLY;
962     if (SpNode)
963     {
964         lock_grab(&(sp->lock));
965         bestValue = sp->bestValue;
966     }
967
968     // Step 11. Loop through moves
969     // Loop through all pseudo-legal moves until no moves remain or a beta cutoff occurs
970     while (   bestValue < beta
971            && (move = mp.get_next_move()) != MOVE_NONE
972            && !thread.cutoff_occurred())
973     {
974       assert(move_is_ok(move));
975
976       if (move == excludedMove)
977           continue;
978
979       // At PV and SpNode nodes we want the moves to be legal
980       if ((PvNode || SpNode) && !pos.pl_move_is_legal(move, ci.pinned))
981           continue;
982
983       if (SpNode)
984       {
985           moveCount = ++sp->moveCount;
986           lock_release(&(sp->lock));
987       }
988       else
989           moveCount++;
990
991       if (RootNode)
992       {
993           // This is used by time management
994           FirstRootMove = (moveCount == 1);
995
996           // Save the current node count before the move is searched
997           nodes = pos.nodes_searched();
998
999           // If it's time to send nodes info, do it here where we have the
1000           // correct accumulated node counts searched by each thread.
1001           if (SendSearchedNodes)
1002           {
1003               SendSearchedNodes = false;
1004               cout << "info" << speed_to_uci(pos.nodes_searched()) << endl;
1005           }
1006
1007           // For long searches send to GUI current move
1008           if (current_search_time() > 2000)
1009               cout << "info" << depth_to_uci(depth)
1010                    << " currmove " << move << " currmovenumber " << moveCount << endl;
1011       }
1012
1013       // At Root and at first iteration do a PV search on all the moves to score root moves
1014       isPvMove = (PvNode && moveCount <= (RootNode ? depth <= ONE_PLY ? MAX_MOVES : MultiPV : 1));
1015       givesCheck = pos.move_gives_check(move, ci);
1016       captureOrPromotion = pos.move_is_capture(move) || move_is_promotion(move);
1017
1018       // Step 12. Decide the new search depth
1019       ext = extension<PvNode>(pos, move, captureOrPromotion, givesCheck, &dangerous);
1020
1021       // Singular extension search. If all moves but one fail low on a search of
1022       // (alpha-s, beta-s), and just one fails high on (alpha, beta), then that move
1023       // is singular and should be extended. To verify this we do a reduced search
1024       // on all the other moves but the ttMove, if result is lower than ttValue minus
1025       // a margin then we extend ttMove.
1026       if (   singularExtensionNode
1027           && move == ttMove
1028           && pos.pl_move_is_legal(move, ci.pinned)
1029           && ext < ONE_PLY)
1030       {
1031           Value ttValue = value_from_tt(tte->value(), ss->ply);
1032
1033           if (abs(ttValue) < VALUE_KNOWN_WIN)
1034           {
1035               Value rBeta = ttValue - int(depth);
1036               ss->excludedMove = move;
1037               ss->skipNullMove = true;
1038               Value v = search<NonPV>(pos, ss, rBeta - 1, rBeta, depth / 2);
1039               ss->skipNullMove = false;
1040               ss->excludedMove = MOVE_NONE;
1041               ss->bestMove = MOVE_NONE;
1042               if (v < rBeta)
1043                   ext = ONE_PLY;
1044           }
1045       }
1046
1047       // Update current move (this must be done after singular extension search)
1048       newDepth = depth - ONE_PLY + ext;
1049
1050       // Step 13. Futility pruning (is omitted in PV nodes)
1051       if (   !PvNode
1052           && !captureOrPromotion
1053           && !inCheck
1054           && !dangerous
1055           &&  move != ttMove
1056           && !move_is_castle(move))
1057       {
1058           // Move count based pruning
1059           if (   moveCount >= futility_move_count(depth)
1060               && (!threatMove || !connected_threat(pos, move, threatMove))
1061               && bestValue > VALUE_MATED_IN_PLY_MAX) // FIXME bestValue is racy
1062           {
1063               if (SpNode)
1064                   lock_grab(&(sp->lock));
1065
1066               continue;
1067           }
1068
1069           // Value based pruning
1070           // We illogically ignore reduction condition depth >= 3*ONE_PLY for predicted depth,
1071           // but fixing this made program slightly weaker.
1072           Depth predictedDepth = newDepth - reduction<PvNode>(depth, moveCount);
1073           futilityValueScaled =  futilityBase + futility_margin(predictedDepth, moveCount)
1074                                + H.gain(pos.piece_on(move_from(move)), move_to(move));
1075
1076           if (futilityValueScaled < beta)
1077           {
1078               if (SpNode)
1079               {
1080                   lock_grab(&(sp->lock));
1081                   if (futilityValueScaled > sp->bestValue)
1082                       sp->bestValue = bestValue = futilityValueScaled;
1083               }
1084               else if (futilityValueScaled > bestValue)
1085                   bestValue = futilityValueScaled;
1086
1087               continue;
1088           }
1089
1090           // Prune moves with negative SEE at low depths
1091           if (   predictedDepth < 2 * ONE_PLY
1092               && bestValue > VALUE_MATED_IN_PLY_MAX
1093               && pos.see_sign(move) < 0)
1094           {
1095               if (SpNode)
1096                   lock_grab(&(sp->lock));
1097
1098               continue;
1099           }
1100       }
1101
1102       // Check for legality only before to do the move
1103       if (!pos.pl_move_is_legal(move, ci.pinned))
1104       {
1105           moveCount--;
1106           continue;
1107       }
1108
1109       ss->currentMove = move;
1110
1111       // Step 14. Make the move
1112       pos.do_move(move, st, ci, givesCheck);
1113
1114       if (!SpNode && !captureOrPromotion)
1115           movesSearched[playedMoveCount++] = move;
1116
1117       // Step extra. pv search (only in PV nodes)
1118       // The first move in list is the expected PV
1119       if (isPvMove)
1120           value = newDepth < ONE_PLY ? -qsearch<PV>(pos, ss+1, -beta, -alpha, DEPTH_ZERO)
1121                                      : - search<PV>(pos, ss+1, -beta, -alpha, newDepth);
1122       else
1123       {
1124           // Step 15. Reduced depth search
1125           // If the move fails high will be re-searched at full depth.
1126           bool doFullDepthSearch = true;
1127           alpha = SpNode ? sp->alpha : alpha;
1128
1129           if (    depth > 3 * ONE_PLY
1130               && !captureOrPromotion
1131               && !dangerous
1132               && !move_is_castle(move)
1133               &&  ss->killers[0] != move
1134               &&  ss->killers[1] != move)
1135           {
1136               ss->reduction = reduction<PvNode>(depth, moveCount);
1137               if (ss->reduction)
1138               {
1139                   Depth d = newDepth - ss->reduction;
1140                   value = d < ONE_PLY ? -qsearch<NonPV>(pos, ss+1, -(alpha+1), -alpha, DEPTH_ZERO)
1141                                       : - search<NonPV>(pos, ss+1, -(alpha+1), -alpha, d);
1142                   doFullDepthSearch = (value > alpha);
1143               }
1144               ss->reduction = DEPTH_ZERO; // Restore original reduction
1145           }
1146
1147           // Step 16. Full depth search
1148           if (doFullDepthSearch)
1149           {
1150               alpha = SpNode ? sp->alpha : alpha;
1151               value = newDepth < ONE_PLY ? -qsearch<NonPV>(pos, ss+1, -(alpha+1), -alpha, DEPTH_ZERO)
1152                                          : - search<NonPV>(pos, ss+1, -(alpha+1), -alpha, newDepth);
1153
1154               // Step extra. pv search (only in PV nodes)
1155               // Search only for possible new PV nodes, if instead value >= beta then
1156               // parent node fails low with value <= alpha and tries another move.
1157               if (PvNode && value > alpha && (RootNode || value < beta))
1158                   value = newDepth < ONE_PLY ? -qsearch<PV>(pos, ss+1, -beta, -alpha, DEPTH_ZERO)
1159                                              : - search<PV>(pos, ss+1, -beta, -alpha, newDepth);
1160           }
1161       }
1162
1163       // Step 17. Undo move
1164       pos.undo_move(move);
1165
1166       assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);
1167
1168       // Step 18. Check for new best move
1169       if (SpNode)
1170       {
1171           lock_grab(&(sp->lock));
1172           bestValue = sp->bestValue;
1173           alpha = sp->alpha;
1174       }
1175
1176       if (value > bestValue && !(SpNode && thread.cutoff_occurred()))
1177       {
1178           bestValue = value;
1179
1180           if (SpNode)
1181               sp->bestValue = value;
1182
1183           if (!RootNode && value > alpha)
1184           {
1185               if (PvNode && value < beta) // We want always alpha < beta
1186               {
1187                   alpha = value;
1188
1189                   if (SpNode)
1190                       sp->alpha = value;
1191               }
1192               else if (SpNode)
1193                   sp->is_betaCutoff = true;
1194
1195               ss->bestMove = move;
1196
1197               if (SpNode)
1198                   sp->ss->bestMove = move;
1199           }
1200       }
1201
1202       if (RootNode)
1203       {
1204           // Finished searching the move. If StopRequest is true, the search
1205           // was aborted because the user interrupted the search or because we
1206           // ran out of time. In this case, the return value of the search cannot
1207           // be trusted, and we break out of the loop without updating the best
1208           // move and/or PV.
1209           if (StopRequest)
1210               break;
1211
1212           // Remember searched nodes counts for this move
1213           mp.current().nodes += pos.nodes_searched() - nodes;
1214
1215           // PV move or new best move ?
1216           if (isPvMove || value > alpha)
1217           {
1218               // Update PV
1219               ss->bestMove = move;
1220               mp.current().pv_score = value;
1221               mp.current().extract_pv_from_tt(pos);
1222
1223               // We record how often the best move has been changed in each
1224               // iteration. This information is used for time management: When
1225               // the best move changes frequently, we allocate some more time.
1226               if (!isPvMove && MultiPV == 1)
1227                   Rml.bestMoveChanges++;
1228
1229               // It is critical that sorting is done with a stable algorithm
1230               // because all the values but the first are usually set to
1231               // -VALUE_INFINITE and we want to keep the same order for all
1232               // the moves but the new PV that goes to head.
1233               Rml.sort_first(moveCount);
1234
1235               // Update alpha. In multi-pv we don't use aspiration window, so set
1236               // alpha equal to minimum score among the PV lines searched so far.
1237               if (MultiPV > 1)
1238                   alpha = Rml[Min(moveCount, MultiPV) - 1].pv_score;
1239               else if (value > alpha)
1240                   alpha = value;
1241           }
1242           else
1243               // All other moves but the PV are set to the lowest value, this
1244               // is not a problem when sorting becuase sort is stable and move
1245               // position in the list is preserved, just the PV is pushed up.
1246               mp.current().pv_score = -VALUE_INFINITE;
1247
1248       } // RootNode
1249
1250       // Step 19. Check for split
1251       if (   !RootNode
1252           && !SpNode
1253           && depth >= Threads.min_split_depth()
1254           && bestValue < beta
1255           && Threads.available_slave_exists(pos.thread())
1256           && !StopRequest
1257           && !thread.cutoff_occurred())
1258           Threads.split<FakeSplit>(pos, ss, &alpha, beta, &bestValue, depth,
1259                                    threatMove, moveCount, &mp, PvNode);
1260     }
1261
1262     // Step 20. Check for mate and stalemate
1263     // All legal moves have been searched and if there are
1264     // no legal moves, it must be mate or stalemate.
1265     // If one move was excluded return fail low score.
1266     if (!SpNode && !moveCount)
1267         return excludedMove ? oldAlpha : inCheck ? value_mated_in(ss->ply) : VALUE_DRAW;
1268
1269     // Step 21. Update tables
1270     // If the search is not aborted, update the transposition table,
1271     // history counters, and killer moves.
1272     if (!SpNode && !StopRequest && !thread.cutoff_occurred())
1273     {
1274         move = bestValue <= oldAlpha ? MOVE_NONE : ss->bestMove;
1275         vt   = bestValue <= oldAlpha ? VALUE_TYPE_UPPER
1276              : bestValue >= beta ? VALUE_TYPE_LOWER : VALUE_TYPE_EXACT;
1277
1278         TT.store(posKey, value_to_tt(bestValue, ss->ply), vt, depth, move, ss->eval, ss->evalMargin);
1279
1280         // Update killers and history only for non capture moves that fails high
1281         if (    bestValue >= beta
1282             && !pos.move_is_capture(move)
1283             && !move_is_promotion(move))
1284         {
1285             if (move != ss->killers[0])
1286             {
1287                 ss->killers[1] = ss->killers[0];
1288                 ss->killers[0] = move;
1289             }
1290             update_history(pos, move, depth, movesSearched, playedMoveCount);
1291         }
1292     }
1293
1294     if (SpNode)
1295     {
1296         // Here we have the lock still grabbed
1297         sp->is_slave[pos.thread()] = false;
1298         sp->nodes += pos.nodes_searched();
1299         lock_release(&(sp->lock));
1300     }
1301
1302     assert(bestValue > -VALUE_INFINITE && bestValue < VALUE_INFINITE);
1303
1304     return bestValue;
1305   }
1306
1307   // qsearch() is the quiescence search function, which is called by the main
1308   // search function when the remaining depth is zero (or, to be more precise,
1309   // less than ONE_PLY).
1310
1311   template <NodeType NT>
1312   Value qsearch(Position& pos, SearchStack* ss, Value alpha, Value beta, Depth depth) {
1313
1314     const bool PvNode = (NT == PV);
1315
1316     assert(NT == PV || NT == NonPV);
1317     assert(alpha >= -VALUE_INFINITE && alpha <= VALUE_INFINITE);
1318     assert(beta >= -VALUE_INFINITE && beta <= VALUE_INFINITE);
1319     assert(PvNode || alpha == beta - 1);
1320     assert(depth <= 0);
1321     assert(pos.thread() >= 0 && pos.thread() < Threads.size());
1322
1323     StateInfo st;
1324     Move ttMove, move;
1325     Value bestValue, value, evalMargin, futilityValue, futilityBase;
1326     bool inCheck, enoughMaterial, givesCheck, evasionPrunable;
1327     const TTEntry* tte;
1328     Depth ttDepth;
1329     Value oldAlpha = alpha;
1330
1331     ss->bestMove = ss->currentMove = MOVE_NONE;
1332     ss->ply = (ss-1)->ply + 1;
1333
1334     // Check for an instant draw or maximum ply reached
1335     if (pos.is_draw<true>() || ss->ply > PLY_MAX)
1336         return VALUE_DRAW;
1337
1338     // Decide whether or not to include checks, this fixes also the type of
1339     // TT entry depth that we are going to use. Note that in qsearch we use
1340     // only two types of depth in TT: DEPTH_QS_CHECKS or DEPTH_QS_NO_CHECKS.
1341     inCheck = pos.in_check();
1342     ttDepth = (inCheck || depth >= DEPTH_QS_CHECKS ? DEPTH_QS_CHECKS : DEPTH_QS_NO_CHECKS);
1343
1344     // Transposition table lookup. At PV nodes, we don't use the TT for
1345     // pruning, but only for move ordering.
1346     tte = TT.probe(pos.get_key());
1347     ttMove = (tte ? tte->move() : MOVE_NONE);
1348
1349     if (!PvNode && tte && ok_to_use_TT(tte, ttDepth, beta, ss->ply))
1350     {
1351         ss->bestMove = ttMove; // Can be MOVE_NONE
1352         return value_from_tt(tte->value(), ss->ply);
1353     }
1354
1355     // Evaluate the position statically
1356     if (inCheck)
1357     {
1358         bestValue = futilityBase = -VALUE_INFINITE;
1359         ss->eval = evalMargin = VALUE_NONE;
1360         enoughMaterial = false;
1361     }
1362     else
1363     {
1364         if (tte)
1365         {
1366             assert(tte->static_value() != VALUE_NONE);
1367
1368             evalMargin = tte->static_value_margin();
1369             ss->eval = bestValue = tte->static_value();
1370         }
1371         else
1372             ss->eval = bestValue = evaluate(pos, evalMargin);
1373
1374         // Stand pat. Return immediately if static value is at least beta
1375         if (bestValue >= beta)
1376         {
1377             if (!tte)
1378                 TT.store(pos.get_key(), value_to_tt(bestValue, ss->ply), VALUE_TYPE_LOWER, DEPTH_NONE, MOVE_NONE, ss->eval, evalMargin);
1379
1380             return bestValue;
1381         }
1382
1383         if (PvNode && bestValue > alpha)
1384             alpha = bestValue;
1385
1386         // Futility pruning parameters, not needed when in check
1387         futilityBase = ss->eval + evalMargin + FutilityMarginQS;
1388         enoughMaterial = pos.non_pawn_material(pos.side_to_move()) > RookValueMidgame;
1389     }
1390
1391     // Initialize a MovePicker object for the current position, and prepare
1392     // to search the moves. Because the depth is <= 0 here, only captures,
1393     // queen promotions and checks (only if depth >= DEPTH_QS_CHECKS) will
1394     // be generated.
1395     MovePicker mp(pos, ttMove, depth, H, move_to((ss-1)->currentMove));
1396     CheckInfo ci(pos);
1397
1398     // Loop through the moves until no moves remain or a beta cutoff occurs
1399     while (   alpha < beta
1400            && (move = mp.get_next_move()) != MOVE_NONE)
1401     {
1402       assert(move_is_ok(move));
1403
1404       givesCheck = pos.move_gives_check(move, ci);
1405
1406       // Futility pruning
1407       if (   !PvNode
1408           && !inCheck
1409           && !givesCheck
1410           &&  move != ttMove
1411           &&  enoughMaterial
1412           && !move_is_promotion(move)
1413           && !pos.move_is_passed_pawn_push(move))
1414       {
1415           futilityValue =  futilityBase
1416                          + pos.endgame_value_of_piece_on(move_to(move))
1417                          + (move_is_ep(move) ? PawnValueEndgame : VALUE_ZERO);
1418
1419           if (futilityValue < alpha)
1420           {
1421               if (futilityValue > bestValue)
1422                   bestValue = futilityValue;
1423               continue;
1424           }
1425
1426           // Prune moves with negative or equal SEE
1427           if (   futilityBase < beta
1428               && depth < DEPTH_ZERO
1429               && pos.see(move) <= 0)
1430               continue;
1431       }
1432
1433       // Detect non-capture evasions that are candidate to be pruned
1434       evasionPrunable =   !PvNode
1435                        && inCheck
1436                        && bestValue > VALUE_MATED_IN_PLY_MAX
1437                        && !pos.move_is_capture(move)
1438                        && !pos.can_castle(pos.side_to_move());
1439
1440       // Don't search moves with negative SEE values
1441       if (   !PvNode
1442           && (!inCheck || evasionPrunable)
1443           &&  move != ttMove
1444           && !move_is_promotion(move)
1445           &&  pos.see_sign(move) < 0)
1446           continue;
1447
1448       // Don't search useless checks
1449       if (   !PvNode
1450           && !inCheck
1451           &&  givesCheck
1452           &&  move != ttMove
1453           && !pos.move_is_capture(move)
1454           && !move_is_promotion(move)
1455           &&  ss->eval + PawnValueMidgame / 4 < beta
1456           && !check_is_dangerous(pos, move, futilityBase, beta, &bestValue))
1457       {
1458           if (ss->eval + PawnValueMidgame / 4 > bestValue)
1459               bestValue = ss->eval + PawnValueMidgame / 4;
1460
1461           continue;
1462       }
1463
1464       // Check for legality only before to do the move
1465       if (!pos.pl_move_is_legal(move, ci.pinned))
1466           continue;
1467
1468       // Update current move
1469       ss->currentMove = move;
1470
1471       // Make and search the move
1472       pos.do_move(move, st, ci, givesCheck);
1473       value = -qsearch<NT>(pos, ss+1, -beta, -alpha, depth-ONE_PLY);
1474       pos.undo_move(move);
1475
1476       assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);
1477
1478       // New best move?
1479       if (value > bestValue)
1480       {
1481           bestValue = value;
1482           if (value > alpha)
1483           {
1484               alpha = value;
1485               ss->bestMove = move;
1486           }
1487        }
1488     }
1489
1490     // All legal moves have been searched. A special case: If we're in check
1491     // and no legal moves were found, it is checkmate.
1492     if (inCheck && bestValue == -VALUE_INFINITE)
1493         return value_mated_in(ss->ply);
1494
1495     // Update transposition table
1496     ValueType vt = (bestValue <= oldAlpha ? VALUE_TYPE_UPPER : bestValue >= beta ? VALUE_TYPE_LOWER : VALUE_TYPE_EXACT);
1497     TT.store(pos.get_key(), value_to_tt(bestValue, ss->ply), vt, ttDepth, ss->bestMove, ss->eval, evalMargin);
1498
1499     assert(bestValue > -VALUE_INFINITE && bestValue < VALUE_INFINITE);
1500
1501     return bestValue;
1502   }
1503
1504
1505   // check_is_dangerous() tests if a checking move can be pruned in qsearch().
1506   // bestValue is updated only when returning false because in that case move
1507   // will be pruned.
1508
1509   bool check_is_dangerous(Position &pos, Move move, Value futilityBase, Value beta, Value *bestValue)
1510   {
1511     Bitboard b, occ, oldAtt, newAtt, kingAtt;
1512     Square from, to, ksq, victimSq;
1513     Piece pc;
1514     Color them;
1515     Value futilityValue, bv = *bestValue;
1516
1517     from = move_from(move);
1518     to = move_to(move);
1519     them = opposite_color(pos.side_to_move());
1520     ksq = pos.king_square(them);
1521     kingAtt = pos.attacks_from<KING>(ksq);
1522     pc = pos.piece_on(from);
1523
1524     occ = pos.occupied_squares() & ~(1ULL << from) & ~(1ULL << ksq);
1525     oldAtt = pos.attacks_from(pc, from, occ);
1526     newAtt = pos.attacks_from(pc,   to, occ);
1527
1528     // Rule 1. Checks which give opponent's king at most one escape square are dangerous
1529     b = kingAtt & ~pos.pieces_of_color(them) & ~newAtt & ~(1ULL << to);
1530
1531     if (!(b && (b & (b - 1))))
1532         return true;
1533
1534     // Rule 2. Queen contact check is very dangerous
1535     if (   type_of_piece(pc) == QUEEN
1536         && bit_is_set(kingAtt, to))
1537         return true;
1538
1539     // Rule 3. Creating new double threats with checks
1540     b = pos.pieces_of_color(them) & newAtt & ~oldAtt & ~(1ULL << ksq);
1541
1542     while (b)
1543     {
1544         victimSq = pop_1st_bit(&b);
1545         futilityValue = futilityBase + pos.endgame_value_of_piece_on(victimSq);
1546
1547         // Note that here we generate illegal "double move"!
1548         if (   futilityValue >= beta
1549             && pos.see_sign(make_move(from, victimSq)) >= 0)
1550             return true;
1551
1552         if (futilityValue > bv)
1553             bv = futilityValue;
1554     }
1555
1556     // Update bestValue only if check is not dangerous (because we will prune the move)
1557     *bestValue = bv;
1558     return false;
1559   }
1560
1561
1562   // connected_moves() tests whether two moves are 'connected' in the sense
1563   // that the first move somehow made the second move possible (for instance
1564   // if the moving piece is the same in both moves). The first move is assumed
1565   // to be the move that was made to reach the current position, while the
1566   // second move is assumed to be a move from the current position.
1567
1568   bool connected_moves(const Position& pos, Move m1, Move m2) {
1569
1570     Square f1, t1, f2, t2;
1571     Piece p;
1572
1573     assert(m1 && move_is_ok(m1));
1574     assert(m2 && move_is_ok(m2));
1575
1576     // Case 1: The moving piece is the same in both moves
1577     f2 = move_from(m2);
1578     t1 = move_to(m1);
1579     if (f2 == t1)
1580         return true;
1581
1582     // Case 2: The destination square for m2 was vacated by m1
1583     t2 = move_to(m2);
1584     f1 = move_from(m1);
1585     if (t2 == f1)
1586         return true;
1587
1588     // Case 3: Moving through the vacated square
1589     if (   piece_is_slider(pos.piece_on(f2))
1590         && bit_is_set(squares_between(f2, t2), f1))
1591       return true;
1592
1593     // Case 4: The destination square for m2 is defended by the moving piece in m1
1594     p = pos.piece_on(t1);
1595     if (bit_is_set(pos.attacks_from(p, t1), t2))
1596         return true;
1597
1598     // Case 5: Discovered check, checking piece is the piece moved in m1
1599     if (    piece_is_slider(p)
1600         &&  bit_is_set(squares_between(t1, pos.king_square(pos.side_to_move())), f2)
1601         && !bit_is_set(squares_between(t1, pos.king_square(pos.side_to_move())), t2))
1602     {
1603         // discovered_check_candidates() works also if the Position's side to
1604         // move is the opposite of the checking piece.
1605         Color them = opposite_color(pos.side_to_move());
1606         Bitboard dcCandidates = pos.discovered_check_candidates(them);
1607
1608         if (bit_is_set(dcCandidates, f2))
1609             return true;
1610     }
1611     return false;
1612   }
1613
1614
1615   // value_to_tt() adjusts a mate score from "plies to mate from the root" to
1616   // "plies to mate from the current ply".  Non-mate scores are unchanged.
1617   // The function is called before storing a value to the transposition table.
1618
1619   Value value_to_tt(Value v, int ply) {
1620
1621     if (v >= VALUE_MATE_IN_PLY_MAX)
1622       return v + ply;
1623
1624     if (v <= VALUE_MATED_IN_PLY_MAX)
1625       return v - ply;
1626
1627     return v;
1628   }
1629
1630
1631   // value_from_tt() is the inverse of value_to_tt(): It adjusts a mate score from
1632   // the transposition table to a mate score corrected for the current ply.
1633
1634   Value value_from_tt(Value v, int ply) {
1635
1636     if (v >= VALUE_MATE_IN_PLY_MAX)
1637       return v - ply;
1638
1639     if (v <= VALUE_MATED_IN_PLY_MAX)
1640       return v + ply;
1641
1642     return v;
1643   }
1644
1645
1646   // connected_threat() tests whether it is safe to forward prune a move or if
1647   // is somehow connected to the threat move returned by null search.
1648
1649   bool connected_threat(const Position& pos, Move m, Move threat) {
1650
1651     assert(move_is_ok(m));
1652     assert(threat && move_is_ok(threat));
1653     assert(!pos.move_is_capture(m) && !move_is_promotion(m));
1654     assert(!pos.move_is_passed_pawn_push(m));
1655
1656     Square mfrom, mto, tfrom, tto;
1657
1658     mfrom = move_from(m);
1659     mto = move_to(m);
1660     tfrom = move_from(threat);
1661     tto = move_to(threat);
1662
1663     // Case 1: Don't prune moves which move the threatened piece
1664     if (mfrom == tto)
1665         return true;
1666
1667     // Case 2: If the threatened piece has value less than or equal to the
1668     // value of the threatening piece, don't prune moves which defend it.
1669     if (   pos.move_is_capture(threat)
1670         && (   pos.midgame_value_of_piece_on(tfrom) >= pos.midgame_value_of_piece_on(tto)
1671             || pos.type_of_piece_on(tfrom) == KING)
1672         && pos.move_attacks_square(m, tto))
1673         return true;
1674
1675     // Case 3: If the moving piece in the threatened move is a slider, don't
1676     // prune safe moves which block its ray.
1677     if (   piece_is_slider(pos.piece_on(tfrom))
1678         && bit_is_set(squares_between(tfrom, tto), mto)
1679         && pos.see_sign(m) >= 0)
1680         return true;
1681
1682     return false;
1683   }
1684
1685
1686   // ok_to_use_TT() returns true if a transposition table score
1687   // can be used at a given point in search.
1688
1689   bool ok_to_use_TT(const TTEntry* tte, Depth depth, Value beta, int ply) {
1690
1691     Value v = value_from_tt(tte->value(), ply);
1692
1693     return   (   tte->depth() >= depth
1694               || v >= Max(VALUE_MATE_IN_PLY_MAX, beta)
1695               || v < Min(VALUE_MATED_IN_PLY_MAX, beta))
1696
1697           && (   ((tte->type() & VALUE_TYPE_LOWER) && v >= beta)
1698               || ((tte->type() & VALUE_TYPE_UPPER) && v < beta));
1699   }
1700
1701
1702   // refine_eval() returns the transposition table score if
1703   // possible otherwise falls back on static position evaluation.
1704
1705   Value refine_eval(const TTEntry* tte, Value defaultEval, int ply) {
1706
1707       assert(tte);
1708
1709       Value v = value_from_tt(tte->value(), ply);
1710
1711       if (   ((tte->type() & VALUE_TYPE_LOWER) && v >= defaultEval)
1712           || ((tte->type() & VALUE_TYPE_UPPER) && v < defaultEval))
1713           return v;
1714
1715       return defaultEval;
1716   }
1717
1718
1719   // update_history() registers a good move that produced a beta-cutoff
1720   // in history and marks as failures all the other moves of that ply.
1721
1722   void update_history(const Position& pos, Move move, Depth depth,
1723                       Move movesSearched[], int moveCount) {
1724     Move m;
1725     Value bonus = Value(int(depth) * int(depth));
1726
1727     H.update(pos.piece_on(move_from(move)), move_to(move), bonus);
1728
1729     for (int i = 0; i < moveCount - 1; i++)
1730     {
1731         m = movesSearched[i];
1732
1733         assert(m != move);
1734
1735         H.update(pos.piece_on(move_from(m)), move_to(m), -bonus);
1736     }
1737   }
1738
1739
1740   // update_gains() updates the gains table of a non-capture move given
1741   // the static position evaluation before and after the move.
1742
1743   void update_gains(const Position& pos, Move m, Value before, Value after) {
1744
1745     if (   m != MOVE_NULL
1746         && before != VALUE_NONE
1747         && after != VALUE_NONE
1748         && pos.captured_piece_type() == PIECE_TYPE_NONE
1749         && !move_is_special(m))
1750         H.update_gain(pos.piece_on(move_to(m)), move_to(m), -(before + after));
1751   }
1752
1753
1754   // current_search_time() returns the number of milliseconds which have passed
1755   // since the beginning of the current search.
1756
1757   int current_search_time(int set) {
1758
1759     static int searchStartTime;
1760
1761     if (set)
1762         searchStartTime = set;
1763
1764     return get_system_time() - searchStartTime;
1765   }
1766
1767
1768   // score_to_uci() converts a value to a string suitable for use with the UCI
1769   // protocol specifications:
1770   //
1771   // cp <x>     The score from the engine's point of view in centipawns.
1772   // mate <y>   Mate in y moves, not plies. If the engine is getting mated
1773   //            use negative values for y.
1774
1775   std::string score_to_uci(Value v, Value alpha, Value beta) {
1776
1777     std::stringstream s;
1778
1779     if (abs(v) < VALUE_MATE - PLY_MAX * ONE_PLY)
1780         s << " score cp " << int(v) * 100 / int(PawnValueMidgame); // Scale to centipawns
1781     else
1782         s << " score mate " << (v > 0 ? VALUE_MATE - v + 1 : -VALUE_MATE - v) / 2;
1783
1784     s << (v >= beta ? " lowerbound" : v <= alpha ? " upperbound" : "");
1785
1786     return s.str();
1787   }
1788
1789
1790   // speed_to_uci() returns a string with time stats of current search suitable
1791   // to be sent to UCI gui.
1792
1793   std::string speed_to_uci(int64_t nodes) {
1794
1795     std::stringstream s;
1796     int t = current_search_time();
1797
1798     s << " nodes " << nodes
1799       << " nps " << (t > 0 ? int(nodes * 1000 / t) : 0)
1800       << " time "  << t;
1801
1802     return s.str();
1803   }
1804
1805   // pv_to_uci() returns a string with information on the current PV line
1806   // formatted according to UCI specification.
1807
1808   std::string pv_to_uci(Move pv[], int pvNum) {
1809
1810     std::stringstream s;
1811
1812     s << " multipv " << pvNum << " pv ";
1813
1814     for ( ; *pv != MOVE_NONE; pv++)
1815         s << *pv << " ";
1816
1817     return s.str();
1818   }
1819
1820   // depth_to_uci() returns a string with information on the current depth and
1821   // seldepth formatted according to UCI specification.
1822
1823   std::string depth_to_uci(Depth depth) {
1824
1825     std::stringstream s;
1826
1827     // Retrieve max searched depth among threads
1828     int selDepth = 0;
1829     for (int i = 0; i < Threads.size(); i++)
1830         if (Threads[i].maxPly > selDepth)
1831             selDepth = Threads[i].maxPly;
1832
1833      s << " depth " << depth / ONE_PLY << " seldepth " << selDepth;
1834
1835     return s.str();
1836   }
1837
1838
1839   // poll() performs two different functions: It polls for user input, and it
1840   // looks at the time consumed so far and decides if it's time to abort the
1841   // search.
1842
1843   void poll(const Position& pos) {
1844
1845     static int lastInfoTime;
1846     int t = current_search_time();
1847
1848     //  Poll for input
1849     if (input_available())
1850     {
1851         // We are line oriented, don't read single chars
1852         std::string command;
1853
1854         if (!std::getline(std::cin, command) || command == "quit")
1855         {
1856             // Quit the program as soon as possible
1857             Limits.ponder = false;
1858             QuitRequest = StopRequest = true;
1859             return;
1860         }
1861         else if (command == "stop")
1862         {
1863             // Stop calculating as soon as possible, but still send the "bestmove"
1864             // and possibly the "ponder" token when finishing the search.
1865             Limits.ponder = false;
1866             StopRequest = true;
1867         }
1868         else if (command == "ponderhit")
1869         {
1870             // The opponent has played the expected move. GUI sends "ponderhit" if
1871             // we were told to ponder on the same move the opponent has played. We
1872             // should continue searching but switching from pondering to normal search.
1873             Limits.ponder = false;
1874
1875             if (StopOnPonderhit)
1876                 StopRequest = true;
1877         }
1878     }
1879
1880     // Print search information
1881     if (t < 1000)
1882         lastInfoTime = 0;
1883
1884     else if (lastInfoTime > t)
1885         // HACK: Must be a new search where we searched less than
1886         // NodesBetweenPolls nodes during the first second of search.
1887         lastInfoTime = 0;
1888
1889     else if (t - lastInfoTime >= 1000)
1890     {
1891         lastInfoTime = t;
1892
1893         dbg_print_mean();
1894         dbg_print_hit_rate();
1895
1896         // Send info on searched nodes as soon as we return to root
1897         SendSearchedNodes = true;
1898     }
1899
1900     // Should we stop the search?
1901     if (Limits.ponder)
1902         return;
1903
1904     bool stillAtFirstMove =    FirstRootMove
1905                            && !AspirationFailLow
1906                            &&  t > TimeMgr.available_time();
1907
1908     bool noMoreTime =   t > TimeMgr.maximum_time()
1909                      || stillAtFirstMove;
1910
1911     if (   (Limits.useTimeManagement() && noMoreTime)
1912         || (Limits.maxTime && t >= Limits.maxTime)
1913         || (Limits.maxNodes && pos.nodes_searched() >= Limits.maxNodes)) // FIXME
1914         StopRequest = true;
1915   }
1916
1917
1918   // wait_for_stop_or_ponderhit() is called when the maximum depth is reached
1919   // while the program is pondering. The point is to work around a wrinkle in
1920   // the UCI protocol: When pondering, the engine is not allowed to give a
1921   // "bestmove" before the GUI sends it a "stop" or "ponderhit" command.
1922   // We simply wait here until one of these commands is sent, and return,
1923   // after which the bestmove and pondermove will be printed.
1924
1925   void wait_for_stop_or_ponderhit() {
1926
1927     std::string command;
1928
1929     // Wait for a command from stdin
1930     while (   std::getline(std::cin, command)
1931            && command != "ponderhit" && command != "stop" && command != "quit") {};
1932
1933     if (command != "ponderhit" && command != "stop")
1934         QuitRequest = true; // Must be "quit" or getline() returned false
1935   }
1936
1937
1938   // When playing with strength handicap choose best move among the MultiPV set
1939   // using a statistical rule dependent on SkillLevel. Idea by Heinz van Saanen.
1940   void do_skill_level(Move* best, Move* ponder) {
1941
1942     assert(MultiPV > 1);
1943
1944     static RKISS rk;
1945
1946     // Rml list is already sorted by pv_score in descending order
1947     int s;
1948     int max_s = -VALUE_INFINITE;
1949     int size = Min(MultiPV, (int)Rml.size());
1950     int max = Rml[0].pv_score;
1951     int var = Min(max - Rml[size - 1].pv_score, PawnValueMidgame);
1952     int wk = 120 - 2 * SkillLevel;
1953
1954     // PRNG sequence should be non deterministic
1955     for (int i = abs(get_system_time() % 50); i > 0; i--)
1956         rk.rand<unsigned>();
1957
1958     // Choose best move. For each move's score we add two terms both dependent
1959     // on wk, one deterministic and bigger for weaker moves, and one random,
1960     // then we choose the move with the resulting highest score.
1961     for (int i = 0; i < size; i++)
1962     {
1963         s = Rml[i].pv_score;
1964
1965         // Don't allow crazy blunders even at very low skills
1966         if (i > 0 && Rml[i-1].pv_score > s + EasyMoveMargin)
1967             break;
1968
1969         // This is our magical formula
1970         s += ((max - s) * wk + var * (rk.rand<unsigned>() % wk)) / 128;
1971
1972         if (s > max_s)
1973         {
1974             max_s = s;
1975             *best = Rml[i].pv[0];
1976             *ponder = Rml[i].pv[1];
1977         }
1978     }
1979   }
1980
1981
1982   /// RootMove and RootMoveList method's definitions
1983
1984   RootMove::RootMove() {
1985
1986     nodes = 0;
1987     pv_score = non_pv_score = -VALUE_INFINITE;
1988     pv[0] = MOVE_NONE;
1989   }
1990
1991   RootMove& RootMove::operator=(const RootMove& rm) {
1992
1993     const Move* src = rm.pv;
1994     Move* dst = pv;
1995
1996     // Avoid a costly full rm.pv[] copy
1997     do *dst++ = *src; while (*src++ != MOVE_NONE);
1998
1999     nodes = rm.nodes;
2000     pv_score = rm.pv_score;
2001     non_pv_score = rm.non_pv_score;
2002     return *this;
2003   }
2004
2005   void RootMoveList::init(Position& pos, Move searchMoves[]) {
2006
2007     MoveStack mlist[MAX_MOVES];
2008     Move* sm;
2009
2010     clear();
2011     bestMoveChanges = 0;
2012
2013     // Generate all legal moves and add them to RootMoveList
2014     MoveStack* last = generate<MV_LEGAL>(pos, mlist);
2015     for (MoveStack* cur = mlist; cur != last; cur++)
2016     {
2017         // If we have a searchMoves[] list then verify cur->move
2018         // is in the list before to add it.
2019         for (sm = searchMoves; *sm && *sm != cur->move; sm++) {}
2020
2021         if (searchMoves[0] && *sm != cur->move)
2022             continue;
2023
2024         RootMove rm;
2025         rm.pv[0] = cur->move;
2026         rm.pv[1] = MOVE_NONE;
2027         rm.pv_score = -VALUE_INFINITE;
2028         push_back(rm);
2029     }
2030   }
2031
2032   // extract_pv_from_tt() builds a PV by adding moves from the transposition table.
2033   // We consider also failing high nodes and not only VALUE_TYPE_EXACT nodes. This
2034   // allow to always have a ponder move even when we fail high at root and also a
2035   // long PV to print that is important for position analysis.
2036
2037   void RootMove::extract_pv_from_tt(Position& pos) {
2038
2039     StateInfo state[PLY_MAX_PLUS_2], *st = state;
2040     TTEntry* tte;
2041     int ply = 1;
2042
2043     assert(pv[0] != MOVE_NONE && pos.move_is_pl(pv[0]));
2044
2045     pos.do_move(pv[0], *st++);
2046
2047     while (   (tte = TT.probe(pos.get_key())) != NULL
2048            && tte->move() != MOVE_NONE
2049            && pos.move_is_pl(tte->move())
2050            && pos.pl_move_is_legal(tte->move(), pos.pinned_pieces(pos.side_to_move()))
2051            && ply < PLY_MAX
2052            && (!pos.is_draw<false>() || ply < 2))
2053     {
2054         pv[ply] = tte->move();
2055         pos.do_move(pv[ply++], *st++);
2056     }
2057     pv[ply] = MOVE_NONE;
2058
2059     do pos.undo_move(pv[--ply]); while (ply);
2060   }
2061
2062   // insert_pv_in_tt() is called at the end of a search iteration, and inserts
2063   // the PV back into the TT. This makes sure the old PV moves are searched
2064   // first, even if the old TT entries have been overwritten.
2065
2066   void RootMove::insert_pv_in_tt(Position& pos) {
2067
2068     StateInfo state[PLY_MAX_PLUS_2], *st = state;
2069     TTEntry* tte;
2070     Key k;
2071     Value v, m = VALUE_NONE;
2072     int ply = 0;
2073
2074     assert(pv[0] != MOVE_NONE && pos.move_is_pl(pv[0]));
2075
2076     do {
2077         k = pos.get_key();
2078         tte = TT.probe(k);
2079
2080         // Don't overwrite existing correct entries
2081         if (!tte || tte->move() != pv[ply])
2082         {
2083             v = (pos.in_check() ? VALUE_NONE : evaluate(pos, m));
2084             TT.store(k, VALUE_NONE, VALUE_TYPE_NONE, DEPTH_NONE, pv[ply], v, m);
2085         }
2086         pos.do_move(pv[ply], *st++);
2087
2088     } while (pv[++ply] != MOVE_NONE);
2089
2090     do pos.undo_move(pv[--ply]); while (ply);
2091   }
2092
2093   // Specializations for MovePickerExt in case of Root node
2094   MovePickerExt<Root>::MovePickerExt(const Position& p, Move ttm, Depth d,
2095                                      const History& h, SearchStack* ss, Value b)
2096                      : MovePicker(p, ttm, d, h, ss, b), cur(-1) {
2097     Move move;
2098     Value score = VALUE_ZERO;
2099
2100     // Score root moves using standard ordering used in main search, the moves
2101     // are scored according to the order in which they are returned by MovePicker.
2102     // This is the second order score that is used to compare the moves when
2103     // the first orders pv_score of both moves are equal.
2104     while ((move = MovePicker::get_next_move()) != MOVE_NONE)
2105         for (RootMoveList::iterator rm = Rml.begin(); rm != Rml.end(); ++rm)
2106             if (rm->pv[0] == move)
2107             {
2108                 rm->non_pv_score = score--;
2109                 break;
2110             }
2111
2112     Rml.sort();
2113   }
2114
2115 } // namespace
2116
2117
2118 // ThreadsManager::idle_loop() is where the threads are parked when they have no work
2119 // to do. The parameter 'sp', if non-NULL, is a pointer to an active SplitPoint
2120 // object for which the current thread is the master.
2121
2122 void ThreadsManager::idle_loop(int threadID, SplitPoint* sp) {
2123
2124   assert(threadID >= 0 && threadID < MAX_THREADS);
2125
2126   int i;
2127   bool allFinished;
2128
2129   while (true)
2130   {
2131       // Slave threads can exit as soon as AllThreadsShouldExit raises,
2132       // master should exit as last one.
2133       if (allThreadsShouldExit)
2134       {
2135           assert(!sp);
2136           threads[threadID].state = Thread::TERMINATED;
2137           return;
2138       }
2139
2140       // If we are not thinking, wait for a condition to be signaled
2141       // instead of wasting CPU time polling for work.
2142       while (   threadID >= activeThreads
2143              || threads[threadID].state == Thread::INITIALIZING
2144              || (useSleepingThreads && threads[threadID].state == Thread::AVAILABLE))
2145       {
2146           assert(!sp || useSleepingThreads);
2147           assert(threadID != 0 || useSleepingThreads);
2148
2149           if (threads[threadID].state == Thread::INITIALIZING)
2150               threads[threadID].state = Thread::AVAILABLE;
2151
2152           // Grab the lock to avoid races with Thread::wake_up()
2153           lock_grab(&threads[threadID].sleepLock);
2154
2155           // If we are master and all slaves have finished do not go to sleep
2156           for (i = 0; sp && i < activeThreads && !sp->is_slave[i]; i++) {}
2157           allFinished = (i == activeThreads);
2158
2159           if (allFinished || allThreadsShouldExit)
2160           {
2161               lock_release(&threads[threadID].sleepLock);
2162               break;
2163           }
2164
2165           // Do sleep here after retesting sleep conditions
2166           if (threadID >= activeThreads || threads[threadID].state == Thread::AVAILABLE)
2167               cond_wait(&threads[threadID].sleepCond, &threads[threadID].sleepLock);
2168
2169           lock_release(&threads[threadID].sleepLock);
2170       }
2171
2172       // If this thread has been assigned work, launch a search
2173       if (threads[threadID].state == Thread::WORKISWAITING)
2174       {
2175           assert(!allThreadsShouldExit);
2176
2177           threads[threadID].state = Thread::SEARCHING;
2178
2179           // Copy split point position and search stack and call search()
2180           // with SplitPoint template parameter set to true.
2181           SearchStack ss[PLY_MAX_PLUS_2];
2182           SplitPoint* tsp = threads[threadID].splitPoint;
2183           Position pos(*tsp->pos, threadID);
2184
2185           memcpy(ss, tsp->ss - 1, 4 * sizeof(SearchStack));
2186           (ss+1)->sp = tsp;
2187
2188           if (tsp->pvNode)
2189               search<SplitPointPV>(pos, ss+1, tsp->alpha, tsp->beta, tsp->depth);
2190           else
2191               search<SplitPointNonPV>(pos, ss+1, tsp->alpha, tsp->beta, tsp->depth);
2192
2193           assert(threads[threadID].state == Thread::SEARCHING);
2194
2195           threads[threadID].state = Thread::AVAILABLE;
2196
2197           // Wake up master thread so to allow it to return from the idle loop in
2198           // case we are the last slave of the split point.
2199           if (   useSleepingThreads
2200               && threadID != tsp->master
2201               && threads[tsp->master].state == Thread::AVAILABLE)
2202               threads[tsp->master].wake_up();
2203       }
2204
2205       // If this thread is the master of a split point and all slaves have
2206       // finished their work at this split point, return from the idle loop.
2207       for (i = 0; sp && i < activeThreads && !sp->is_slave[i]; i++) {}
2208       allFinished = (i == activeThreads);
2209
2210       if (allFinished)
2211       {
2212           // Because sp->slaves[] is reset under lock protection,
2213           // be sure sp->lock has been released before to return.
2214           lock_grab(&(sp->lock));
2215           lock_release(&(sp->lock));
2216
2217           // In helpful master concept a master can help only a sub-tree, and
2218           // because here is all finished is not possible master is booked.
2219           assert(threads[threadID].state == Thread::AVAILABLE);
2220
2221           threads[threadID].state = Thread::SEARCHING;
2222           return;
2223       }
2224   }
2225 }