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