]> git.sesse.net Git - stockfish/blob - src/search.cpp
Avoid research in case thread has already been asked to stop
[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-2009 Marco Costalba
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
32 #include "book.h"
33 #include "evaluate.h"
34 #include "history.h"
35 #include "misc.h"
36 #include "movegen.h"
37 #include "movepick.h"
38 #include "lock.h"
39 #include "san.h"
40 #include "search.h"
41 #include "thread.h"
42 #include "tt.h"
43 #include "ucioption.h"
44
45 using std::cout;
46 using std::endl;
47
48 ////
49 //// Local definitions
50 ////
51
52 namespace {
53
54   /// Types
55
56
57   // ThreadsManager class is used to handle all the threads related stuff in search,
58   // init, starting, parking and, the most important, launching a slave thread at a
59   // split point are what this class does. All the access to shared thread data is
60   // done through this class, so that we avoid using global variables instead.
61
62   class ThreadsManager {
63     /* As long as the single ThreadsManager object is defined as a global we don't
64        need to explicitly initialize to zero its data members because variables with
65        static storage duration are automatically set to zero before enter main()
66     */
67   public:
68     void init_threads();
69     void exit_threads();
70
71     int active_threads() const { return ActiveThreads; }
72     void set_active_threads(int newActiveThreads) { ActiveThreads = newActiveThreads; }
73     void incrementNodeCounter(int threadID) { threads[threadID].nodes++; }
74     void incrementBetaCounter(Color us, Depth d, int threadID) { threads[threadID].betaCutOffs[us] += unsigned(d); }
75     void print_current_line(SearchStack ss[], int ply, int threadID);
76
77     void resetNodeCounters();
78     void resetBetaCounters();
79     int64_t nodes_searched() const;
80     void get_beta_counters(Color us, int64_t& our, int64_t& their) const;
81     bool available_thread_exists(int master) const;
82     bool thread_is_available(int slave, int master) const;
83     bool thread_should_stop(int threadID) const;
84     void wake_sleeping_threads();
85     void put_threads_to_sleep();
86     void idle_loop(int threadID, SplitPoint* waitSp);
87     bool split(const Position& pos, SearchStack* ss, int ply, Value* alpha, const Value beta, Value* bestValue,
88                const Value futilityValue, Depth depth, int* moves, MovePicker* mp, int master, bool pvNode);
89
90   private:
91     friend void poll();
92
93     int ActiveThreads;
94     volatile bool AllThreadsShouldExit, AllThreadsShouldSleep;
95     Thread threads[MAX_THREADS];
96     SplitPoint SplitPointStack[MAX_THREADS][ACTIVE_SPLIT_POINTS_MAX];
97
98     Lock MPLock, IOLock;
99
100 #if !defined(_MSC_VER)
101     pthread_cond_t WaitCond;
102     pthread_mutex_t WaitLock;
103 #else
104     HANDLE SitIdleEvent[MAX_THREADS];
105 #endif
106
107   };
108
109
110   // RootMove struct is used for moves at the root at the tree. For each
111   // root move, we store a score, a node count, and a PV (really a refutation
112   // in the case of moves which fail low).
113
114   struct RootMove {
115
116     RootMove() { nodes = cumulativeNodes = ourBeta = theirBeta = 0ULL; }
117
118     // RootMove::operator<() is the comparison function used when
119     // sorting the moves. A move m1 is considered to be better
120     // than a move m2 if it has a higher score, or if the moves
121     // have equal score but m1 has the higher node count.
122     bool operator<(const RootMove& m) const {
123
124         return score != m.score ? score < m.score : theirBeta <= m.theirBeta;
125     }
126
127     Move move;
128     Value score;
129     int64_t nodes, cumulativeNodes, ourBeta, theirBeta;
130     Move pv[PLY_MAX_PLUS_2];
131   };
132
133
134   // The RootMoveList class is essentially an array of RootMove objects, with
135   // a handful of methods for accessing the data in the individual moves.
136
137   class RootMoveList {
138
139   public:
140     RootMoveList(Position& pos, Move searchMoves[]);
141
142     int move_count() const { return count; }
143     Move get_move(int moveNum) const { return moves[moveNum].move; }
144     Value get_move_score(int moveNum) const { return moves[moveNum].score; }
145     void set_move_score(int moveNum, Value score) { moves[moveNum].score = score; }
146     Move get_move_pv(int moveNum, int i) const { return moves[moveNum].pv[i]; }
147     int64_t get_move_cumulative_nodes(int moveNum) const { return moves[moveNum].cumulativeNodes; }
148
149     void set_move_nodes(int moveNum, int64_t nodes);
150     void set_beta_counters(int moveNum, int64_t our, int64_t their);
151     void set_move_pv(int moveNum, const Move pv[]);
152     void sort();
153     void sort_multipv(int n);
154
155   private:
156     static const int MaxRootMoves = 500;
157     RootMove moves[MaxRootMoves];
158     int count;
159   };
160
161
162   /// Constants
163
164   // Search depth at iteration 1
165   const Depth InitialDepth = OnePly;
166
167   // Use internal iterative deepening?
168   const bool UseIIDAtPVNodes = true;
169   const bool UseIIDAtNonPVNodes = true;
170
171   // Internal iterative deepening margin. At Non-PV moves, when
172   // UseIIDAtNonPVNodes is true, we do an internal iterative deepening
173   // search when the static evaluation is at most IIDMargin below beta.
174   const Value IIDMargin = Value(0x100);
175
176   // Easy move margin. An easy move candidate must be at least this much
177   // better than the second best move.
178   const Value EasyMoveMargin = Value(0x200);
179
180   // Null move margin. A null move search will not be done if the static
181   // evaluation of the position is more than NullMoveMargin below beta.
182   const Value NullMoveMargin = Value(0x200);
183
184   // If the TT move is at least SingleReplyMargin better then the
185   // remaining ones we will extend it.
186   const Value SingleReplyMargin = Value(0x20);
187
188   // Depth limit for razoring
189   const Depth RazorDepth = 4 * OnePly;
190
191   /// Lookup tables initialized at startup
192
193   // Reduction lookup tables and their getter functions
194   int8_t    PVReductionMatrix[64][64]; // [depth][moveNumber]
195   int8_t NonPVReductionMatrix[64][64]; // [depth][moveNumber]
196
197   inline Depth    pv_reduction(Depth d, int mn) { return (Depth)    PVReductionMatrix[Min(d / 2, 63)][Min(mn, 63)]; }
198   inline Depth nonpv_reduction(Depth d, int mn) { return (Depth) NonPVReductionMatrix[Min(d / 2, 63)][Min(mn, 63)]; }
199
200   // Futility lookup tables and their getter functions
201   const Value FutilityMarginQS = Value(0x80);
202   int32_t FutilityMarginsMatrix[14][64]; // [depth][moveNumber]
203   int FutilityMoveCountArray[32]; // [depth]
204
205   inline Value futility_margin(Depth d, int mn) { return Value(d < 7*OnePly ? FutilityMarginsMatrix[Max(d, 0)][Min(mn, 63)] : 2 * VALUE_INFINITE); }
206   inline int futility_move_count(Depth d) { return d < 16*OnePly ? FutilityMoveCountArray[d] : 512; }
207
208   /// Variables initialized by UCI options
209
210   // Depth limit for use of dynamic threat detection
211   Depth ThreatDepth;
212
213   // Last seconds noise filtering (LSN)
214   const bool UseLSNFiltering = true;
215   const int LSNTime = 4000; // In milliseconds
216   const Value LSNValue = value_from_centipawns(200);
217   bool loseOnTime = false;
218
219   // Extensions. Array index 0 is used at non-PV nodes, index 1 at PV nodes.
220   Depth CheckExtension[2], SingleEvasionExtension[2], PawnPushTo7thExtension[2];
221   Depth PassedPawnExtension[2], PawnEndgameExtension[2], MateThreatExtension[2];
222
223   // Iteration counters
224   int Iteration;
225
226   // Scores and number of times the best move changed for each iteration
227   Value ValueByIteration[PLY_MAX_PLUS_2];
228   int BestMoveChangesByIteration[PLY_MAX_PLUS_2];
229
230   // Search window management
231   int AspirationDelta;
232
233   // MultiPV mode
234   int MultiPV;
235
236   // Time managment variables
237   int RootMoveNumber;
238   int SearchStartTime;
239   int MaxNodes, MaxDepth;
240   int MaxSearchTime, AbsoluteMaxSearchTime, ExtraSearchTime, ExactMaxTime;
241   bool UseTimeManagement, InfiniteSearch, PonderSearch, StopOnPonderhit;
242   bool AbortSearch, Quit;
243   bool AspirationFailLow;
244
245   // Show current line?
246   bool ShowCurrentLine;
247
248   // Log file
249   bool UseLogFile;
250   std::ofstream LogFile;
251
252   // MP related variables
253   Depth MinimumSplitDepth;
254   int MaxThreadsPerSplitPoint;
255   ThreadsManager TM;
256
257   // Node counters, used only by thread[0] but try to keep in different
258   // cache lines (64 bytes each) from the heavy SMP read accessed variables.
259   int NodesSincePoll;
260   int NodesBetweenPolls = 30000;
261
262   // History table
263   History H;
264
265   /// Functions
266
267   Value id_loop(const Position& pos, Move searchMoves[]);
268   Value root_search(Position& pos, SearchStack ss[], RootMoveList& rml, Value& oldAlpha, Value& beta);
269   Value search_pv(Position& pos, SearchStack ss[], Value alpha, Value beta, Depth depth, int ply, int threadID);
270   Value search(Position& pos, SearchStack ss[], Value beta, Depth depth, int ply, bool allowNullmove, int threadID, Move excludedMove = MOVE_NONE);
271   Value qsearch(Position& pos, SearchStack ss[], Value alpha, Value beta, Depth depth, int ply, int threadID);
272   void sp_search(SplitPoint* sp, int threadID);
273   void sp_search_pv(SplitPoint* sp, int threadID);
274   void init_node(SearchStack ss[], int ply, int threadID);
275   void update_pv(SearchStack ss[], int ply);
276   void sp_update_pv(SearchStack* pss, SearchStack ss[], int ply);
277   bool connected_moves(const Position& pos, Move m1, Move m2);
278   bool value_is_mate(Value value);
279   bool move_is_killer(Move m, const SearchStack& ss);
280   Depth extension(const Position&, Move, bool, bool, bool, bool, bool, bool*);
281   bool ok_to_do_nullmove(const Position& pos);
282   bool ok_to_prune(const Position& pos, Move m, Move threat);
283   bool ok_to_use_TT(const TTEntry* tte, Depth depth, Value beta, int ply);
284   Value refine_eval(const TTEntry* tte, Value defaultEval, int ply);
285   void update_history(const Position& pos, Move move, Depth depth, Move movesSearched[], int moveCount);
286   void update_killers(Move m, SearchStack& ss);
287   void update_gains(const Position& pos, Move move, Value before, Value after);
288
289   int current_search_time();
290   int nps();
291   void poll();
292   void ponderhit();
293   void wait_for_stop_or_ponderhit();
294   void init_ss_array(SearchStack ss[]);
295
296 #if !defined(_MSC_VER)
297   void *init_thread(void *threadID);
298 #else
299   DWORD WINAPI init_thread(LPVOID threadID);
300 #endif
301
302 }
303
304
305 ////
306 //// Functions
307 ////
308
309 /// init_threads(), exit_threads() and nodes_searched() are helpers to
310 /// give accessibility to some TM methods from outside of current file.
311
312 void init_threads() { TM.init_threads(); }
313 void exit_threads() { TM.exit_threads(); }
314 int64_t nodes_searched() { return TM.nodes_searched(); }
315
316
317 /// perft() is our utility to verify move generation is bug free. All the legal
318 /// moves up to given depth are generated and counted and the sum returned.
319
320 int perft(Position& pos, Depth depth)
321 {
322     Move move;
323     int sum = 0;
324     MovePicker mp = MovePicker(pos, MOVE_NONE, depth, H);
325
326     // If we are at the last ply we don't need to do and undo
327     // the moves, just to count them.
328     if (depth <= OnePly) // Replace with '<' to test also qsearch
329     {
330         while (mp.get_next_move()) sum++;
331         return sum;
332     }
333
334     // Loop through all legal moves
335     CheckInfo ci(pos);
336     while ((move = mp.get_next_move()) != MOVE_NONE)
337     {
338         StateInfo st;
339         pos.do_move(move, st, ci, pos.move_is_check(move, ci));
340         sum += perft(pos, depth - OnePly);
341         pos.undo_move(move);
342     }
343     return sum;
344 }
345
346
347 /// think() is the external interface to Stockfish's search, and is called when
348 /// the program receives the UCI 'go' command. It initializes various
349 /// search-related global variables, and calls root_search(). It returns false
350 /// when a quit command is received during the search.
351
352 bool think(const Position& pos, bool infinite, bool ponder, int side_to_move,
353            int time[], int increment[], int movesToGo, int maxDepth,
354            int maxNodes, int maxTime, Move searchMoves[]) {
355
356   // Initialize global search variables
357   StopOnPonderhit = AbortSearch = Quit = false;
358   AspirationFailLow = false;
359   NodesSincePoll = 0;
360   SearchStartTime = get_system_time();
361   ExactMaxTime = maxTime;
362   MaxDepth = maxDepth;
363   MaxNodes = maxNodes;
364   InfiniteSearch = infinite;
365   PonderSearch = ponder;
366   UseTimeManagement = !ExactMaxTime && !MaxDepth && !MaxNodes && !InfiniteSearch;
367
368   // Look for a book move, only during games, not tests
369   if (UseTimeManagement && get_option_value_bool("OwnBook"))
370   {
371       Move bookMove;
372       if (get_option_value_string("Book File") != OpeningBook.file_name())
373           OpeningBook.open(get_option_value_string("Book File"));
374
375       bookMove = OpeningBook.get_move(pos);
376       if (bookMove != MOVE_NONE)
377       {
378           if (PonderSearch)
379               wait_for_stop_or_ponderhit();
380
381           cout << "bestmove " << bookMove << endl;
382           return true;
383       }
384   }
385
386   TM.resetNodeCounters();
387
388   if (button_was_pressed("New Game"))
389       loseOnTime = false; // Reset at the beginning of a new game
390
391   // Read UCI option values
392   TT.set_size(get_option_value_int("Hash"));
393   if (button_was_pressed("Clear Hash"))
394       TT.clear();
395
396   bool PonderingEnabled = get_option_value_bool("Ponder");
397   MultiPV = get_option_value_int("MultiPV");
398
399   CheckExtension[1] = Depth(get_option_value_int("Check Extension (PV nodes)"));
400   CheckExtension[0] = Depth(get_option_value_int("Check Extension (non-PV nodes)"));
401
402   SingleEvasionExtension[1] = Depth(get_option_value_int("Single Evasion Extension (PV nodes)"));
403   SingleEvasionExtension[0] = Depth(get_option_value_int("Single Evasion Extension (non-PV nodes)"));
404
405   PawnPushTo7thExtension[1] = Depth(get_option_value_int("Pawn Push to 7th Extension (PV nodes)"));
406   PawnPushTo7thExtension[0] = Depth(get_option_value_int("Pawn Push to 7th Extension (non-PV nodes)"));
407
408   PassedPawnExtension[1] = Depth(get_option_value_int("Passed Pawn Extension (PV nodes)"));
409   PassedPawnExtension[0] = Depth(get_option_value_int("Passed Pawn Extension (non-PV nodes)"));
410
411   PawnEndgameExtension[1] = Depth(get_option_value_int("Pawn Endgame Extension (PV nodes)"));
412   PawnEndgameExtension[0] = Depth(get_option_value_int("Pawn Endgame Extension (non-PV nodes)"));
413
414   MateThreatExtension[1] = Depth(get_option_value_int("Mate Threat Extension (PV nodes)"));
415   MateThreatExtension[0] = Depth(get_option_value_int("Mate Threat Extension (non-PV nodes)"));
416
417   ThreatDepth   = get_option_value_int("Threat Depth") * OnePly;
418
419   Chess960 = get_option_value_bool("UCI_Chess960");
420   ShowCurrentLine = get_option_value_bool("UCI_ShowCurrLine");
421   UseLogFile = get_option_value_bool("Use Search Log");
422   if (UseLogFile)
423       LogFile.open(get_option_value_string("Search Log Filename").c_str(), std::ios::out | std::ios::app);
424
425   MinimumSplitDepth = get_option_value_int("Minimum Split Depth") * OnePly;
426   MaxThreadsPerSplitPoint = get_option_value_int("Maximum Number of Threads per Split Point");
427
428   read_weights(pos.side_to_move());
429
430   // Set the number of active threads
431   int newActiveThreads = get_option_value_int("Threads");
432   if (newActiveThreads != TM.active_threads())
433   {
434       TM.set_active_threads(newActiveThreads);
435       init_eval(TM.active_threads());
436       // HACK: init_eval() destroys the static castleRightsMask[] array in the
437       // Position class. The below line repairs the damage.
438       Position p(pos.to_fen());
439       assert(pos.is_ok());
440   }
441
442   // Wake up sleeping threads
443   TM.wake_sleeping_threads();
444
445   // Set thinking time
446   int myTime = time[side_to_move];
447   int myIncrement = increment[side_to_move];
448   if (UseTimeManagement)
449   {
450       if (!movesToGo) // Sudden death time control
451       {
452           if (myIncrement)
453           {
454               MaxSearchTime = myTime / 30 + myIncrement;
455               AbsoluteMaxSearchTime = Max(myTime / 4, myIncrement - 100);
456           }
457           else // Blitz game without increment
458           {
459               MaxSearchTime = myTime / 30;
460               AbsoluteMaxSearchTime = myTime / 8;
461           }
462       }
463       else // (x moves) / (y minutes)
464       {
465           if (movesToGo == 1)
466           {
467               MaxSearchTime = myTime / 2;
468               AbsoluteMaxSearchTime = (myTime > 3000)? (myTime - 500) : ((myTime * 3) / 4);
469           }
470           else
471           {
472               MaxSearchTime = myTime / Min(movesToGo, 20);
473               AbsoluteMaxSearchTime = Min((4 * myTime) / movesToGo, myTime / 3);
474           }
475       }
476
477       if (PonderingEnabled)
478       {
479           MaxSearchTime += MaxSearchTime / 4;
480           MaxSearchTime = Min(MaxSearchTime, AbsoluteMaxSearchTime);
481       }
482   }
483
484   // Set best NodesBetweenPolls interval
485   if (MaxNodes)
486       NodesBetweenPolls = Min(MaxNodes, 30000);
487   else if (myTime && myTime < 1000)
488       NodesBetweenPolls = 1000;
489   else if (myTime && myTime < 5000)
490       NodesBetweenPolls = 5000;
491   else
492       NodesBetweenPolls = 30000;
493
494   // Write information to search log file
495   if (UseLogFile)
496       LogFile << "Searching: " << pos.to_fen() << endl
497               << "infinite: "  << infinite
498               << " ponder: "   << ponder
499               << " time: "     << myTime
500               << " increment: " << myIncrement
501               << " moves to go: " << movesToGo << endl;
502
503   // LSN filtering. Used only for developing purpose. Disabled by default.
504   if (   UseLSNFiltering
505       && loseOnTime)
506   {
507       // Step 2. If after last move we decided to lose on time, do it now!
508        while (SearchStartTime + myTime + 1000 > get_system_time())
509            /* wait here */;
510   }
511
512   // We're ready to start thinking. Call the iterative deepening loop function
513   Value v = id_loop(pos, searchMoves);
514
515   if (UseLSNFiltering)
516   {
517       // Step 1. If this is sudden death game and our position is hopeless,
518       // decide to lose on time.
519       if (   !loseOnTime // If we already lost on time, go to step 3.
520           && myTime < LSNTime
521           && myIncrement == 0
522           && movesToGo == 0
523           && v < -LSNValue)
524       {
525           loseOnTime = true;
526       }
527       else if (loseOnTime)
528       {
529           // Step 3. Now after stepping over the time limit, reset flag for next match.
530           loseOnTime = false;
531       }
532   }
533
534   if (UseLogFile)
535       LogFile.close();
536
537   TM.put_threads_to_sleep();
538
539   return !Quit;
540 }
541
542
543 /// init_search() is called during startup. It initializes various lookup tables
544
545 void init_search() {
546
547   // Init our reduction lookup tables
548   for (int i = 1; i < 64; i++) // i == depth (OnePly = 1)
549       for (int j = 1; j < 64; j++) // j == moveNumber
550       {
551           double    pvRed = 0.5 + log(double(i)) * log(double(j)) / 6.0;
552           double nonPVRed = 0.5 + log(double(i)) * log(double(j)) / 3.0;
553           PVReductionMatrix[i][j]    = (int8_t) (   pvRed >= 1.0 ? floor(   pvRed * int(OnePly)) : 0);
554           NonPVReductionMatrix[i][j] = (int8_t) (nonPVRed >= 1.0 ? floor(nonPVRed * int(OnePly)) : 0);
555       }
556
557   // Init futility margins array
558   for (int i = 0; i < 14; i++) // i == depth (OnePly = 2)
559       for (int j = 0; j < 64; j++) // j == moveNumber
560       {
561           FutilityMarginsMatrix[i][j] = (i < 2 ? 0 : 112 * bitScanReverse32(i * i / 2)) - 8 * j; // FIXME: test using log instead of BSR
562       }
563
564   // Init futility move count array
565   for (int i = 0; i < 32; i++) // i == depth (OnePly = 2)
566       FutilityMoveCountArray[i] = 3 + (1 << (3 * i / 8));
567 }
568
569
570 // SearchStack::init() initializes a search stack. Used at the beginning of a
571 // new search from the root.
572 void SearchStack::init(int ply) {
573
574   pv[ply] = pv[ply + 1] = MOVE_NONE;
575   currentMove = threatMove = MOVE_NONE;
576   reduction = Depth(0);
577   eval = VALUE_NONE;
578 }
579
580 void SearchStack::initKillers() {
581
582   mateKiller = MOVE_NONE;
583   for (int i = 0; i < KILLER_MAX; i++)
584       killers[i] = MOVE_NONE;
585 }
586
587 namespace {
588
589   // id_loop() is the main iterative deepening loop. It calls root_search
590   // repeatedly with increasing depth until the allocated thinking time has
591   // been consumed, the user stops the search, or the maximum search depth is
592   // reached.
593
594   Value id_loop(const Position& pos, Move searchMoves[]) {
595
596     Position p(pos);
597     SearchStack ss[PLY_MAX_PLUS_2];
598
599     // searchMoves are verified, copied, scored and sorted
600     RootMoveList rml(p, searchMoves);
601
602     // Handle special case of searching on a mate/stale position
603     if (rml.move_count() == 0)
604     {
605         if (PonderSearch)
606             wait_for_stop_or_ponderhit();
607
608         return pos.is_check()? -VALUE_MATE : VALUE_DRAW;
609     }
610
611     // Print RootMoveList c'tor startup scoring to the standard output,
612     // so that we print information also for iteration 1.
613     cout << "info depth " << 1 << "\ninfo depth " << 1
614          << " score " << value_to_string(rml.get_move_score(0))
615          << " time " << current_search_time()
616          << " nodes " << TM.nodes_searched()
617          << " nps " << nps()
618          << " pv " << rml.get_move(0) << "\n";
619
620     // Initialize
621     TT.new_search();
622     H.clear();
623     init_ss_array(ss);
624     ValueByIteration[1] = rml.get_move_score(0);
625     Iteration = 1;
626
627     // Is one move significantly better than others after initial scoring ?
628     Move EasyMove = MOVE_NONE;
629     if (   rml.move_count() == 1
630         || rml.get_move_score(0) > rml.get_move_score(1) + EasyMoveMargin)
631         EasyMove = rml.get_move(0);
632
633     // Iterative deepening loop
634     while (Iteration < PLY_MAX)
635     {
636         // Initialize iteration
637         rml.sort();
638         Iteration++;
639         BestMoveChangesByIteration[Iteration] = 0;
640         if (Iteration <= 5)
641             ExtraSearchTime = 0;
642
643         cout << "info depth " << Iteration << endl;
644
645         // Calculate dynamic search window based on previous iterations
646         Value alpha, beta;
647
648         if (MultiPV == 1 && Iteration >= 6 && abs(ValueByIteration[Iteration - 1]) < VALUE_KNOWN_WIN)
649         {
650             int prevDelta1 = ValueByIteration[Iteration - 1] - ValueByIteration[Iteration - 2];
651             int prevDelta2 = ValueByIteration[Iteration - 2] - ValueByIteration[Iteration - 3];
652
653             AspirationDelta = Max(abs(prevDelta1) + abs(prevDelta2) / 2, 16);
654             AspirationDelta = (AspirationDelta + 7) / 8 * 8; // Round to match grainSize
655
656             alpha = Max(ValueByIteration[Iteration - 1] - AspirationDelta, -VALUE_INFINITE);
657             beta  = Min(ValueByIteration[Iteration - 1] + AspirationDelta,  VALUE_INFINITE);
658         }
659         else
660         {
661             alpha = - VALUE_INFINITE;
662             beta  =   VALUE_INFINITE;
663         }
664
665         // Search to the current depth
666         Value value = root_search(p, ss, rml, alpha, beta);
667
668         // Write PV to transposition table, in case the relevant entries have
669         // been overwritten during the search.
670         TT.insert_pv(p, ss[0].pv);
671
672         if (AbortSearch)
673             break; // Value cannot be trusted. Break out immediately!
674
675         //Save info about search result
676         ValueByIteration[Iteration] = value;
677
678         // Drop the easy move if it differs from the new best move
679         if (ss[0].pv[0] != EasyMove)
680             EasyMove = MOVE_NONE;
681
682         if (UseTimeManagement)
683         {
684             // Time to stop?
685             bool stopSearch = false;
686
687             // Stop search early if there is only a single legal move,
688             // we search up to Iteration 6 anyway to get a proper score.
689             if (Iteration >= 6 && rml.move_count() == 1)
690                 stopSearch = true;
691
692             // Stop search early when the last two iterations returned a mate score
693             if (  Iteration >= 6
694                 && abs(ValueByIteration[Iteration]) >= abs(VALUE_MATE) - 100
695                 && abs(ValueByIteration[Iteration-1]) >= abs(VALUE_MATE) - 100)
696                 stopSearch = true;
697
698             // Stop search early if one move seems to be much better than the rest
699             int64_t nodes = TM.nodes_searched();
700             if (   Iteration >= 8
701                 && EasyMove == ss[0].pv[0]
702                 && (  (   rml.get_move_cumulative_nodes(0) > (nodes * 85) / 100
703                        && current_search_time() > MaxSearchTime / 16)
704                     ||(   rml.get_move_cumulative_nodes(0) > (nodes * 98) / 100
705                        && current_search_time() > MaxSearchTime / 32)))
706                 stopSearch = true;
707
708             // Add some extra time if the best move has changed during the last two iterations
709             if (Iteration > 5 && Iteration <= 50)
710                 ExtraSearchTime = BestMoveChangesByIteration[Iteration]   * (MaxSearchTime / 2)
711                                 + BestMoveChangesByIteration[Iteration-1] * (MaxSearchTime / 3);
712
713             // Stop search if most of MaxSearchTime is consumed at the end of the
714             // iteration. We probably don't have enough time to search the first
715             // move at the next iteration anyway.
716             if (current_search_time() > ((MaxSearchTime + ExtraSearchTime) * 80) / 128)
717                 stopSearch = true;
718
719             if (stopSearch)
720             {
721                 if (!PonderSearch)
722                     break;
723                 else
724                     StopOnPonderhit = true;
725             }
726         }
727
728         if (MaxDepth && Iteration >= MaxDepth)
729             break;
730     }
731
732     rml.sort();
733
734     // If we are pondering or in infinite search, we shouldn't print the
735     // best move before we are told to do so.
736     if (!AbortSearch && (PonderSearch || InfiniteSearch))
737         wait_for_stop_or_ponderhit();
738     else
739         // Print final search statistics
740         cout << "info nodes " << TM.nodes_searched()
741              << " nps " << nps()
742              << " time " << current_search_time()
743              << " hashfull " << TT.full() << endl;
744
745     // Print the best move and the ponder move to the standard output
746     if (ss[0].pv[0] == MOVE_NONE)
747     {
748         ss[0].pv[0] = rml.get_move(0);
749         ss[0].pv[1] = MOVE_NONE;
750     }
751     cout << "bestmove " << ss[0].pv[0];
752     if (ss[0].pv[1] != MOVE_NONE)
753         cout << " ponder " << ss[0].pv[1];
754
755     cout << endl;
756
757     if (UseLogFile)
758     {
759         if (dbg_show_mean)
760             dbg_print_mean(LogFile);
761
762         if (dbg_show_hit_rate)
763             dbg_print_hit_rate(LogFile);
764
765         LogFile << "\nNodes: " << TM.nodes_searched()
766                 << "\nNodes/second: " << nps()
767                 << "\nBest move: " << move_to_san(p, ss[0].pv[0]);
768
769         StateInfo st;
770         p.do_move(ss[0].pv[0], st);
771         LogFile << "\nPonder move: " << move_to_san(p, ss[0].pv[1]) << endl;
772     }
773     return rml.get_move_score(0);
774   }
775
776
777   // root_search() is the function which searches the root node. It is
778   // similar to search_pv except that it uses a different move ordering
779   // scheme and prints some information to the standard output.
780
781   Value root_search(Position& pos, SearchStack ss[], RootMoveList& rml, Value& oldAlpha, Value& beta) {
782
783     int64_t nodes;
784     Move move;
785     StateInfo st;
786     Depth depth, ext, newDepth;
787     Value value;
788     CheckInfo ci(pos);
789     int researchCount = 0;
790     bool moveIsCheck, captureOrPromotion, dangerous;
791     Value alpha = oldAlpha;
792     bool isCheck = pos.is_check();
793
794     // Evaluate the position statically
795     EvalInfo ei;
796     ss[0].eval = !isCheck ? evaluate(pos, ei, 0) : VALUE_NONE;
797
798     while (1) // Fail low loop
799     {
800
801         // Loop through all the moves in the root move list
802         for (int i = 0; i <  rml.move_count() && !AbortSearch; i++)
803         {
804             if (alpha >= beta)
805             {
806                 // We failed high, invalidate and skip next moves, leave node-counters
807                 // and beta-counters as they are and quickly return, we will try to do
808                 // a research at the next iteration with a bigger aspiration window.
809                 rml.set_move_score(i, -VALUE_INFINITE);
810                 continue;
811             }
812
813             RootMoveNumber = i + 1;
814
815             // Save the current node count before the move is searched
816             nodes = TM.nodes_searched();
817
818             // Reset beta cut-off counters
819             TM.resetBetaCounters();
820
821             // Pick the next root move, and print the move and the move number to
822             // the standard output.
823             move = ss[0].currentMove = rml.get_move(i);
824
825             if (current_search_time() >= 1000)
826                 cout << "info currmove " << move
827                      << " currmovenumber " << RootMoveNumber << endl;
828
829             // Decide search depth for this move
830             moveIsCheck = pos.move_is_check(move);
831             captureOrPromotion = pos.move_is_capture_or_promotion(move);
832             depth = (Iteration - 2) * OnePly + InitialDepth;
833             ext = extension(pos, move, true, captureOrPromotion, moveIsCheck, false, false, &dangerous);
834             newDepth = depth + ext;
835
836             value = - VALUE_INFINITE;
837
838             while (1) // Fail high loop
839             {
840
841                 // Make the move, and search it
842                 pos.do_move(move, st, ci, moveIsCheck);
843
844                 if (i < MultiPV || value > alpha)
845                 {
846                     // Aspiration window is disabled in multi-pv case
847                     if (MultiPV > 1)
848                         alpha = -VALUE_INFINITE;
849
850                     value = -search_pv(pos, ss, -beta, -alpha, newDepth, 1, 0);
851                 }
852                 else
853                 {
854                     // Try to reduce non-pv search depth by one ply if move seems not problematic,
855                     // if the move fails high will be re-searched at full depth.
856                     bool doFullDepthSearch = true;
857
858                     if (   depth >= 3*OnePly // FIXME was newDepth
859                         && !dangerous
860                         && !captureOrPromotion
861                         && !move_is_castle(move))
862                     {
863                         ss[0].reduction = pv_reduction(depth, RootMoveNumber - MultiPV + 1);
864                         if (ss[0].reduction)
865                         {
866                             value = -search(pos, ss, -alpha, newDepth-ss[0].reduction, 1, true, 0);
867                             doFullDepthSearch = (value > alpha);
868                         }
869                     }
870
871                     if (doFullDepthSearch)
872                     {
873                         ss[0].reduction = Depth(0);
874                         value = -search(pos, ss, -alpha, newDepth, 1, true, 0);
875
876                         if (value > alpha)
877                             value = -search_pv(pos, ss, -beta, -alpha, newDepth, 1, 0);
878                     }
879                 }
880
881                 pos.undo_move(move);
882
883                 // Can we exit fail high loop ?
884                 if (AbortSearch || value < beta)
885                     break;
886
887                 // We are failing high and going to do a research. It's important to update score
888                 // before research in case we run out of time while researching.
889                 rml.set_move_score(i, value);
890                 update_pv(ss, 0);
891                 TT.extract_pv(pos, ss[0].pv, PLY_MAX);
892                 rml.set_move_pv(i, ss[0].pv);
893
894                 // Print search information to the standard output
895                 cout << "info depth " << Iteration
896                      << " score " << value_to_string(value)
897                      << ((value >= beta) ? " lowerbound" :
898                         ((value <= alpha)? " upperbound" : ""))
899                      << " time "  << current_search_time()
900                      << " nodes " << TM.nodes_searched()
901                      << " nps "   << nps()
902                      << " pv ";
903
904                 for (int j = 0; ss[0].pv[j] != MOVE_NONE && j < PLY_MAX; j++)
905                     cout << ss[0].pv[j] << " ";
906
907                 cout << endl;
908
909                 if (UseLogFile)
910                 {
911                     ValueType type =  (value >= beta  ? VALUE_TYPE_LOWER
912                                     : (value <= alpha ? VALUE_TYPE_UPPER : VALUE_TYPE_EXACT));
913
914                     LogFile << pretty_pv(pos, current_search_time(), Iteration,
915                                          TM.nodes_searched(), value, type, ss[0].pv) << endl;
916                 }
917
918                 // Prepare for a research after a fail high, each time with a wider window
919                 researchCount++;
920                 beta = Min(beta + AspirationDelta * (1 << researchCount), VALUE_INFINITE);
921
922             } // End of fail high loop
923
924             // Finished searching the move. If AbortSearch is true, the search
925             // was aborted because the user interrupted the search or because we
926             // ran out of time. In this case, the return value of the search cannot
927             // be trusted, and we break out of the loop without updating the best
928             // move and/or PV.
929             if (AbortSearch)
930                 break;
931
932             // Remember beta-cutoff and searched nodes counts for this move. The
933             // info is used to sort the root moves at the next iteration.
934             int64_t our, their;
935             TM.get_beta_counters(pos.side_to_move(), our, their);
936             rml.set_beta_counters(i, our, their);
937             rml.set_move_nodes(i, TM.nodes_searched() - nodes);
938
939             assert(value >= -VALUE_INFINITE && value <= VALUE_INFINITE);
940
941             if (value <= alpha && i >= MultiPV)
942                 rml.set_move_score(i, -VALUE_INFINITE);
943             else
944             {
945                 // PV move or new best move!
946
947                 // Update PV
948                 rml.set_move_score(i, value);
949                 update_pv(ss, 0);
950                 TT.extract_pv(pos, ss[0].pv, PLY_MAX);
951                 rml.set_move_pv(i, ss[0].pv);
952
953                 if (MultiPV == 1)
954                 {
955                     // We record how often the best move has been changed in each
956                     // iteration. This information is used for time managment: When
957                     // the best move changes frequently, we allocate some more time.
958                     if (i > 0)
959                         BestMoveChangesByIteration[Iteration]++;
960
961                     // Print search information to the standard output
962                     cout << "info depth " << Iteration
963                          << " score " << value_to_string(value)
964                          << ((value >= beta) ? " lowerbound" :
965                             ((value <= alpha)? " upperbound" : ""))
966                          << " time "  << current_search_time()
967                          << " nodes " << TM.nodes_searched()
968                          << " nps "   << nps()
969                          << " pv ";
970
971                     for (int j = 0; ss[0].pv[j] != MOVE_NONE && j < PLY_MAX; j++)
972                         cout << ss[0].pv[j] << " ";
973
974                     cout << endl;
975
976                     if (UseLogFile)
977                     {
978                         ValueType type =  (value >= beta  ? VALUE_TYPE_LOWER
979                                         : (value <= alpha ? VALUE_TYPE_UPPER : VALUE_TYPE_EXACT));
980
981                         LogFile << pretty_pv(pos, current_search_time(), Iteration,
982                                              TM.nodes_searched(), value, type, ss[0].pv) << endl;
983                     }
984                     if (value > alpha)
985                         alpha = value;
986                 }
987                 else // MultiPV > 1
988                 {
989                     rml.sort_multipv(i);
990                     for (int j = 0; j < Min(MultiPV, rml.move_count()); j++)
991                     {
992                         cout << "info multipv " << j + 1
993                              << " score " << value_to_string(rml.get_move_score(j))
994                              << " depth " << ((j <= i)? Iteration : Iteration - 1)
995                              << " time " << current_search_time()
996                              << " nodes " << TM.nodes_searched()
997                              << " nps " << nps()
998                              << " pv ";
999
1000                         for (int k = 0; rml.get_move_pv(j, k) != MOVE_NONE && k < PLY_MAX; k++)
1001                             cout << rml.get_move_pv(j, k) << " ";
1002
1003                         cout << endl;
1004                     }
1005                     alpha = rml.get_move_score(Min(i, MultiPV-1));
1006                 }
1007             } // PV move or new best move
1008
1009             assert(alpha >= oldAlpha);
1010
1011             AspirationFailLow = (alpha == oldAlpha);
1012
1013             if (AspirationFailLow && StopOnPonderhit)
1014                 StopOnPonderhit = false;
1015         }
1016
1017         // Can we exit fail low loop ?
1018         if (AbortSearch || alpha > oldAlpha)
1019             break;
1020
1021         // Prepare for a research after a fail low, each time with a wider window
1022         researchCount++;
1023         alpha = Max(alpha - AspirationDelta * (1 << researchCount), -VALUE_INFINITE);
1024         oldAlpha = alpha;
1025
1026     } // Fail low loop
1027
1028     return alpha;
1029   }
1030
1031
1032   // search_pv() is the main search function for PV nodes.
1033
1034   Value search_pv(Position& pos, SearchStack ss[], Value alpha, Value beta,
1035                   Depth depth, int ply, int threadID) {
1036
1037     assert(alpha >= -VALUE_INFINITE && alpha <= VALUE_INFINITE);
1038     assert(beta > alpha && beta <= VALUE_INFINITE);
1039     assert(ply >= 0 && ply < PLY_MAX);
1040     assert(threadID >= 0 && threadID < TM.active_threads());
1041
1042     Move movesSearched[256];
1043     StateInfo st;
1044     const TTEntry* tte;
1045     Move ttMove, move;
1046     Depth ext, newDepth;
1047     Value oldAlpha, value;
1048     bool isCheck, mateThreat, singleEvasion, moveIsCheck, captureOrPromotion, dangerous;
1049     int moveCount = 0;
1050     Value bestValue = value = -VALUE_INFINITE;
1051
1052     if (depth < OnePly)
1053         return qsearch(pos, ss, alpha, beta, Depth(0), ply, threadID);
1054
1055     // Initialize, and make an early exit in case of an aborted search,
1056     // an instant draw, maximum ply reached, etc.
1057     init_node(ss, ply, threadID);
1058
1059     // After init_node() that calls poll()
1060     if (AbortSearch || TM.thread_should_stop(threadID))
1061         return Value(0);
1062
1063     if (pos.is_draw() || ply >= PLY_MAX - 1)
1064         return VALUE_DRAW;
1065
1066     // Mate distance pruning
1067     oldAlpha = alpha;
1068     alpha = Max(value_mated_in(ply), alpha);
1069     beta = Min(value_mate_in(ply+1), beta);
1070     if (alpha >= beta)
1071         return alpha;
1072
1073     // Transposition table lookup. At PV nodes, we don't use the TT for
1074     // pruning, but only for move ordering. This is to avoid problems in
1075     // the following areas:
1076     //
1077     // * Repetition draw detection
1078     // * Fifty move rule detection
1079     // * Searching for a mate
1080     // * Printing of full PV line
1081     //
1082     tte = TT.retrieve(pos.get_key());
1083     ttMove = (tte ? tte->move() : MOVE_NONE);
1084
1085     // Go with internal iterative deepening if we don't have a TT move
1086     if (   UseIIDAtPVNodes
1087         && depth >= 5*OnePly
1088         && ttMove == MOVE_NONE)
1089     {
1090         search_pv(pos, ss, alpha, beta, depth-2*OnePly, ply, threadID);
1091         ttMove = ss[ply].pv[ply];
1092         tte = TT.retrieve(pos.get_key());
1093     }
1094
1095     isCheck = pos.is_check();
1096     if (!isCheck)
1097     {
1098         // Update gain statistics of the previous move that lead
1099         // us in this position.
1100         EvalInfo ei;
1101         ss[ply].eval = evaluate(pos, ei, threadID);
1102         update_gains(pos, ss[ply - 1].currentMove, ss[ply - 1].eval, ss[ply].eval);
1103     }
1104
1105     // Initialize a MovePicker object for the current position, and prepare
1106     // to search all moves
1107     mateThreat = pos.has_mate_threat(opposite_color(pos.side_to_move()));
1108     CheckInfo ci(pos);
1109     MovePicker mp = MovePicker(pos, ttMove, depth, H, &ss[ply]);
1110
1111     // Loop through all legal moves until no moves remain or a beta cutoff
1112     // occurs.
1113     while (   alpha < beta
1114            && (move = mp.get_next_move()) != MOVE_NONE
1115            && !TM.thread_should_stop(threadID))
1116     {
1117       assert(move_is_ok(move));
1118
1119       singleEvasion = (isCheck && mp.number_of_evasions() == 1);
1120       moveIsCheck = pos.move_is_check(move, ci);
1121       captureOrPromotion = pos.move_is_capture_or_promotion(move);
1122
1123       // Decide the new search depth
1124       ext = extension(pos, move, true, captureOrPromotion, moveIsCheck, singleEvasion, mateThreat, &dangerous);
1125
1126       // Singular extension search. We extend the TT move if its value is much better than
1127       // its siblings. To verify this we do a reduced search on all the other moves but the
1128       // ttMove, if result is lower then ttValue minus a margin then we extend ttMove.
1129       if (   depth >= 6 * OnePly
1130           && tte
1131           && move == tte->move()
1132           && ext < OnePly
1133           && is_lower_bound(tte->type())
1134           && tte->depth() >= depth - 3 * OnePly)
1135       {
1136           Value ttValue = value_from_tt(tte->value(), ply);
1137
1138           if (abs(ttValue) < VALUE_KNOWN_WIN)
1139           {
1140               Value excValue = search(pos, ss, ttValue - SingleReplyMargin, depth / 2, ply, false, threadID, move);
1141
1142               if (excValue < ttValue - SingleReplyMargin)
1143                   ext = OnePly;
1144           }
1145       }
1146
1147       newDepth = depth - OnePly + ext;
1148
1149       // Update current move
1150       movesSearched[moveCount++] = ss[ply].currentMove = move;
1151
1152       // Make and search the move
1153       pos.do_move(move, st, ci, moveIsCheck);
1154
1155       if (moveCount == 1) // The first move in list is the PV
1156           value = -search_pv(pos, ss, -beta, -alpha, newDepth, ply+1, threadID);
1157       else
1158       {
1159         // Try to reduce non-pv search depth by one ply if move seems not problematic,
1160         // if the move fails high will be re-searched at full depth.
1161         bool doFullDepthSearch = true;
1162
1163         if (    depth >= 3*OnePly
1164             && !dangerous
1165             && !captureOrPromotion
1166             && !move_is_castle(move)
1167             && !move_is_killer(move, ss[ply]))
1168         {
1169             ss[ply].reduction = pv_reduction(depth, moveCount);
1170             if (ss[ply].reduction)
1171             {
1172                 value = -search(pos, ss, -alpha, newDepth-ss[ply].reduction, ply+1, true, threadID);
1173                 doFullDepthSearch = (value > alpha);
1174             }
1175         }
1176
1177         if (doFullDepthSearch) // Go with full depth non-pv search
1178         {
1179             ss[ply].reduction = Depth(0);
1180             value = -search(pos, ss, -alpha, newDepth, ply+1, true, threadID);
1181             if (value > alpha && value < beta)
1182                 value = -search_pv(pos, ss, -beta, -alpha, newDepth, ply+1, threadID);
1183         }
1184       }
1185       pos.undo_move(move);
1186
1187       assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);
1188
1189       // New best move?
1190       if (value > bestValue)
1191       {
1192           bestValue = value;
1193           if (value > alpha)
1194           {
1195               alpha = value;
1196               update_pv(ss, ply);
1197               if (value == value_mate_in(ply + 1))
1198                   ss[ply].mateKiller = move;
1199           }
1200       }
1201
1202       // Split?
1203       if (   TM.active_threads() > 1
1204           && bestValue < beta
1205           && depth >= MinimumSplitDepth
1206           && Iteration <= 99
1207           && TM.available_thread_exists(threadID)
1208           && !AbortSearch
1209           && !TM.thread_should_stop(threadID)
1210           && TM.split(pos, ss, ply, &alpha, beta, &bestValue, VALUE_NONE,
1211                       depth, &moveCount, &mp, threadID, true))
1212           break;
1213     }
1214
1215     // All legal moves have been searched.  A special case: If there were
1216     // no legal moves, it must be mate or stalemate.
1217     if (moveCount == 0)
1218         return (isCheck ? value_mated_in(ply) : VALUE_DRAW);
1219
1220     // If the search is not aborted, update the transposition table,
1221     // history counters, and killer moves.
1222     if (AbortSearch || TM.thread_should_stop(threadID))
1223         return bestValue;
1224
1225     if (bestValue <= oldAlpha)
1226         TT.store(pos.get_key(), value_to_tt(bestValue, ply), VALUE_TYPE_UPPER, depth, MOVE_NONE);
1227
1228     else if (bestValue >= beta)
1229     {
1230         TM.incrementBetaCounter(pos.side_to_move(), depth, threadID);
1231         move = ss[ply].pv[ply];
1232         if (!pos.move_is_capture_or_promotion(move))
1233         {
1234             update_history(pos, move, depth, movesSearched, moveCount);
1235             update_killers(move, ss[ply]);
1236         }
1237         TT.store(pos.get_key(), value_to_tt(bestValue, ply), VALUE_TYPE_LOWER, depth, move);
1238     }
1239     else
1240         TT.store(pos.get_key(), value_to_tt(bestValue, ply), VALUE_TYPE_EXACT, depth, ss[ply].pv[ply]);
1241
1242     return bestValue;
1243   }
1244
1245
1246   // search() is the search function for zero-width nodes.
1247
1248   Value search(Position& pos, SearchStack ss[], Value beta, Depth depth,
1249                int ply, bool allowNullmove, int threadID, Move excludedMove) {
1250
1251     assert(beta >= -VALUE_INFINITE && beta <= VALUE_INFINITE);
1252     assert(ply >= 0 && ply < PLY_MAX);
1253     assert(threadID >= 0 && threadID < TM.active_threads());
1254
1255     Move movesSearched[256];
1256     EvalInfo ei;
1257     StateInfo st;
1258     const TTEntry* tte;
1259     Move ttMove, move;
1260     Depth ext, newDepth;
1261     Value bestValue, staticValue, nullValue, value, futilityValue, futilityValueScaled;
1262     bool isCheck, singleEvasion, moveIsCheck, captureOrPromotion, dangerous;
1263     bool mateThreat = false;
1264     int moveCount = 0;
1265     futilityValue = staticValue = bestValue = value = -VALUE_INFINITE;
1266
1267     if (depth < OnePly)
1268         return qsearch(pos, ss, beta-1, beta, Depth(0), ply, threadID);
1269
1270     // Initialize, and make an early exit in case of an aborted search,
1271     // an instant draw, maximum ply reached, etc.
1272     init_node(ss, ply, threadID);
1273
1274     // After init_node() that calls poll()
1275     if (AbortSearch || TM.thread_should_stop(threadID))
1276         return Value(0);
1277
1278     if (pos.is_draw() || ply >= PLY_MAX - 1)
1279         return VALUE_DRAW;
1280
1281     // Mate distance pruning
1282     if (value_mated_in(ply) >= beta)
1283         return beta;
1284
1285     if (value_mate_in(ply + 1) < beta)
1286         return beta - 1;
1287
1288     // We don't want the score of a partial search to overwrite a previous full search
1289     // TT value, so we use a different position key in case of an excluded move exsists.
1290     Key posKey = excludedMove ? pos.get_exclusion_key() : pos.get_key();
1291
1292     // Transposition table lookup
1293     tte = TT.retrieve(posKey);
1294     ttMove = (tte ? tte->move() : MOVE_NONE);
1295
1296     if (tte && ok_to_use_TT(tte, depth, beta, ply))
1297     {
1298         ss[ply].currentMove = ttMove; // Can be MOVE_NONE
1299         return value_from_tt(tte->value(), ply);
1300     }
1301
1302     isCheck = pos.is_check();
1303
1304     // Evaluate the position statically
1305     if (!isCheck)
1306     {
1307         if (tte && (tte->type() & VALUE_TYPE_EVAL))
1308             staticValue = value_from_tt(tte->value(), ply);
1309         else
1310             staticValue = evaluate(pos, ei, threadID);
1311
1312         ss[ply].eval = staticValue;
1313         futilityValue = staticValue + futility_margin(depth, 0); //FIXME: Remove me, only for split
1314         staticValue = refine_eval(tte, staticValue, ply); // Enhance accuracy with TT value if possible
1315         update_gains(pos, ss[ply - 1].currentMove, ss[ply - 1].eval, ss[ply].eval);
1316     }
1317
1318     // Static null move pruning. We're betting that the opponent doesn't have
1319     // a move that will reduce the score by more than FutilityMargins[int(depth)]
1320     // if we do a null move.
1321     if (  !isCheck
1322         && allowNullmove
1323         && depth < RazorDepth
1324         && staticValue - futility_margin(depth, 0) >= beta)
1325         return staticValue - futility_margin(depth, 0);
1326
1327     // Null move search
1328     if (    allowNullmove
1329         &&  depth > OnePly
1330         && !isCheck
1331         && !value_is_mate(beta)
1332         &&  ok_to_do_nullmove(pos)
1333         &&  staticValue >= beta - (depth >= 4 * OnePly ? NullMoveMargin : 0))
1334     {
1335         ss[ply].currentMove = MOVE_NULL;
1336
1337         pos.do_null_move(st);
1338
1339         // Null move dynamic reduction based on depth
1340         int R = 3 + (depth >= 5 * OnePly ? depth / 8 : 0);
1341
1342         // Null move dynamic reduction based on value
1343         if (staticValue - beta > PawnValueMidgame)
1344             R++;
1345
1346         nullValue = -search(pos, ss, -(beta-1), depth-R*OnePly, ply+1, false, threadID);
1347
1348         pos.undo_null_move();
1349
1350         if (nullValue >= beta)
1351         {
1352             if (depth < 6 * OnePly)
1353                 return beta;
1354
1355             // Do zugzwang verification search
1356             Value v = search(pos, ss, beta, depth-5*OnePly, ply, false, threadID);
1357             if (v >= beta)
1358                 return beta;
1359         } else {
1360             // The null move failed low, which means that we may be faced with
1361             // some kind of threat. If the previous move was reduced, check if
1362             // the move that refuted the null move was somehow connected to the
1363             // move which was reduced. If a connection is found, return a fail
1364             // low score (which will cause the reduced move to fail high in the
1365             // parent node, which will trigger a re-search with full depth).
1366             if (nullValue == value_mated_in(ply + 2))
1367                 mateThreat = true;
1368
1369             ss[ply].threatMove = ss[ply + 1].currentMove;
1370             if (   depth < ThreatDepth
1371                 && ss[ply - 1].reduction
1372                 && connected_moves(pos, ss[ply - 1].currentMove, ss[ply].threatMove))
1373                 return beta - 1;
1374         }
1375     }
1376     // Null move search not allowed, try razoring
1377     else if (   !value_is_mate(beta)
1378              && !isCheck
1379              && depth < RazorDepth
1380              && staticValue < beta - (NullMoveMargin + 16 * depth)
1381              && ss[ply - 1].currentMove != MOVE_NULL
1382              && ttMove == MOVE_NONE
1383              && !pos.has_pawn_on_7th(pos.side_to_move()))
1384     {
1385         Value rbeta = beta - (NullMoveMargin + 16 * depth);
1386         Value v = qsearch(pos, ss, rbeta-1, rbeta, Depth(0), ply, threadID);
1387         if (v < rbeta)
1388           return v;
1389     }
1390
1391     // Go with internal iterative deepening if we don't have a TT move
1392     if (UseIIDAtNonPVNodes && ttMove == MOVE_NONE && depth >= 8*OnePly &&
1393         !isCheck && ss[ply].eval >= beta - IIDMargin)
1394     {
1395         search(pos, ss, beta, Min(depth/2, depth-2*OnePly), ply, false, threadID);
1396         ttMove = ss[ply].pv[ply];
1397         tte = TT.retrieve(posKey);
1398     }
1399
1400     // Initialize a MovePicker object for the current position, and prepare
1401     // to search all moves.
1402     MovePicker mp = MovePicker(pos, ttMove, depth, H, &ss[ply]);
1403     CheckInfo ci(pos);
1404
1405     // Loop through all legal moves until no moves remain or a beta cutoff occurs
1406     while (   bestValue < beta
1407            && (move = mp.get_next_move()) != MOVE_NONE
1408            && !TM.thread_should_stop(threadID))
1409     {
1410       assert(move_is_ok(move));
1411
1412       if (move == excludedMove)
1413           continue;
1414
1415       moveIsCheck = pos.move_is_check(move, ci);
1416       singleEvasion = (isCheck && mp.number_of_evasions() == 1);
1417       captureOrPromotion = pos.move_is_capture_or_promotion(move);
1418
1419       // Decide the new search depth
1420       ext = extension(pos, move, false, captureOrPromotion, moveIsCheck, singleEvasion, mateThreat, &dangerous);
1421
1422       // Singular extension search. We extend the TT move if its value is much better than
1423       // its siblings. To verify this we do a reduced search on all the other moves but the
1424       // ttMove, if result is lower then ttValue minus a margin then we extend ttMove.
1425       if (   depth >= 8 * OnePly
1426           && tte
1427           && move == tte->move()
1428           && !excludedMove // Do not allow recursive single-reply search
1429           && ext < OnePly
1430           && is_lower_bound(tte->type())
1431           && tte->depth() >= depth - 3 * OnePly)
1432       {
1433           Value ttValue = value_from_tt(tte->value(), ply);
1434
1435           if (abs(ttValue) < VALUE_KNOWN_WIN)
1436           {
1437               Value excValue = search(pos, ss, ttValue - SingleReplyMargin, depth / 2, ply, false, threadID, move);
1438
1439               if (excValue < ttValue - SingleReplyMargin)
1440                   ext = OnePly;
1441           }
1442       }
1443
1444       newDepth = depth - OnePly + ext;
1445
1446       // Update current move
1447       movesSearched[moveCount++] = ss[ply].currentMove = move;
1448
1449       // Futility pruning
1450       if (   !isCheck
1451           && !dangerous
1452           && !captureOrPromotion
1453           && !move_is_castle(move)
1454           &&  move != ttMove)
1455       {
1456           // Move count based pruning
1457           if (   moveCount >= futility_move_count(depth)
1458               && ok_to_prune(pos, move, ss[ply].threatMove)
1459               && bestValue > value_mated_in(PLY_MAX))
1460               continue;
1461
1462           // Value based pruning
1463           Depth predictedDepth = newDepth - nonpv_reduction(depth, moveCount); //FIXME: We are ignoring condition: depth >= 3*OnePly, BUG??
1464           futilityValueScaled =  ss[ply].eval + futility_margin(predictedDepth, moveCount)
1465                                + H.gain(pos.piece_on(move_from(move)), move_to(move)) + 45;
1466
1467           if (futilityValueScaled < beta)
1468           {
1469               if (futilityValueScaled > bestValue)
1470                   bestValue = futilityValueScaled;
1471               continue;
1472           }
1473       }
1474
1475       // Make and search the move
1476       pos.do_move(move, st, ci, moveIsCheck);
1477
1478       // Try to reduce non-pv search depth by one ply if move seems not problematic,
1479       // if the move fails high will be re-searched at full depth.
1480       bool doFullDepthSearch = true;
1481
1482       if (    depth >= 3*OnePly
1483           && !dangerous
1484           && !captureOrPromotion
1485           && !move_is_castle(move)
1486           && !move_is_killer(move, ss[ply]))
1487       {
1488           ss[ply].reduction = nonpv_reduction(depth, moveCount);
1489           if (ss[ply].reduction)
1490           {
1491               value = -search(pos, ss, -(beta-1), newDepth-ss[ply].reduction, ply+1, true, threadID);
1492               doFullDepthSearch = (value >= beta);
1493           }
1494       }
1495
1496       if (doFullDepthSearch) // Go with full depth non-pv search
1497       {
1498           ss[ply].reduction = Depth(0);
1499           value = -search(pos, ss, -(beta-1), newDepth, ply+1, true, threadID);
1500       }
1501       pos.undo_move(move);
1502
1503       assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);
1504
1505       // New best move?
1506       if (value > bestValue)
1507       {
1508           bestValue = value;
1509           if (value >= beta)
1510               update_pv(ss, ply);
1511
1512           if (value == value_mate_in(ply + 1))
1513               ss[ply].mateKiller = move;
1514       }
1515
1516       // Split?
1517       if (   TM.active_threads() > 1
1518           && bestValue < beta
1519           && depth >= MinimumSplitDepth
1520           && Iteration <= 99
1521           && TM.available_thread_exists(threadID)
1522           && !AbortSearch
1523           && !TM.thread_should_stop(threadID)
1524           && TM.split(pos, ss, ply, NULL, beta, &bestValue, futilityValue, //FIXME: SMP & futilityValue
1525                       depth, &moveCount, &mp, threadID, false))
1526           break;
1527     }
1528
1529     // All legal moves have been searched. A special case: If there were
1530     // no legal moves, it must be mate or stalemate.
1531     if (!moveCount)
1532         return excludedMove ? beta - 1 : (pos.is_check() ? value_mated_in(ply) : VALUE_DRAW);
1533
1534     // If the search is not aborted, update the transposition table,
1535     // history counters, and killer moves.
1536     if (AbortSearch || TM.thread_should_stop(threadID))
1537         return bestValue;
1538
1539     if (bestValue < beta)
1540         TT.store(posKey, value_to_tt(bestValue, ply), VALUE_TYPE_UPPER, depth, MOVE_NONE);
1541     else
1542     {
1543         TM.incrementBetaCounter(pos.side_to_move(), depth, threadID);
1544         move = ss[ply].pv[ply];
1545         TT.store(posKey, value_to_tt(bestValue, ply), VALUE_TYPE_LOWER, depth, move);
1546         if (!pos.move_is_capture_or_promotion(move))
1547         {
1548             update_history(pos, move, depth, movesSearched, moveCount);
1549             update_killers(move, ss[ply]);
1550         }
1551
1552     }
1553
1554     assert(bestValue > -VALUE_INFINITE && bestValue < VALUE_INFINITE);
1555
1556     return bestValue;
1557   }
1558
1559
1560   // qsearch() is the quiescence search function, which is called by the main
1561   // search function when the remaining depth is zero (or, to be more precise,
1562   // less than OnePly).
1563
1564   Value qsearch(Position& pos, SearchStack ss[], Value alpha, Value beta,
1565                 Depth depth, int ply, int threadID) {
1566
1567     assert(alpha >= -VALUE_INFINITE && alpha <= VALUE_INFINITE);
1568     assert(beta >= -VALUE_INFINITE && beta <= VALUE_INFINITE);
1569     assert(depth <= 0);
1570     assert(ply >= 0 && ply < PLY_MAX);
1571     assert(threadID >= 0 && threadID < TM.active_threads());
1572
1573     EvalInfo ei;
1574     StateInfo st;
1575     Move ttMove, move;
1576     Value staticValue, bestValue, value, futilityBase, futilityValue;
1577     bool isCheck, enoughMaterial, moveIsCheck, evasionPrunable;
1578     const TTEntry* tte = NULL;
1579     int moveCount = 0;
1580     bool pvNode = (beta - alpha != 1);
1581     Value oldAlpha = alpha;
1582
1583     // Initialize, and make an early exit in case of an aborted search,
1584     // an instant draw, maximum ply reached, etc.
1585     init_node(ss, ply, threadID);
1586
1587     // After init_node() that calls poll()
1588     if (AbortSearch || TM.thread_should_stop(threadID))
1589         return Value(0);
1590
1591     if (pos.is_draw() || ply >= PLY_MAX - 1)
1592         return VALUE_DRAW;
1593
1594     // Transposition table lookup. At PV nodes, we don't use the TT for
1595     // pruning, but only for move ordering.
1596     tte = TT.retrieve(pos.get_key());
1597     ttMove = (tte ? tte->move() : MOVE_NONE);
1598
1599     if (!pvNode && tte && ok_to_use_TT(tte, depth, beta, ply))
1600     {
1601         assert(tte->type() != VALUE_TYPE_EVAL);
1602
1603         ss[ply].currentMove = ttMove; // Can be MOVE_NONE
1604         return value_from_tt(tte->value(), ply);
1605     }
1606
1607     isCheck = pos.is_check();
1608
1609     // Evaluate the position statically
1610     if (isCheck)
1611         staticValue = -VALUE_INFINITE;
1612     else if (tte && (tte->type() & VALUE_TYPE_EVAL))
1613         staticValue = value_from_tt(tte->value(), ply);
1614     else
1615         staticValue = evaluate(pos, ei, threadID);
1616
1617     if (!isCheck)
1618     {
1619         ss[ply].eval = staticValue;
1620         update_gains(pos, ss[ply - 1].currentMove, ss[ply - 1].eval, ss[ply].eval);
1621     }
1622
1623     // Initialize "stand pat score", and return it immediately if it is
1624     // at least beta.
1625     bestValue = staticValue;
1626
1627     if (bestValue >= beta)
1628     {
1629         // Store the score to avoid a future costly evaluation() call
1630         if (!isCheck && !tte && ei.futilityMargin[pos.side_to_move()] == 0)
1631             TT.store(pos.get_key(), value_to_tt(bestValue, ply), VALUE_TYPE_EV_LO, Depth(-127*OnePly), MOVE_NONE);
1632
1633         return bestValue;
1634     }
1635
1636     if (bestValue > alpha)
1637         alpha = bestValue;
1638
1639     // If we are near beta then try to get a cutoff pushing checks a bit further
1640     bool deepChecks = depth == -OnePly && staticValue >= beta - PawnValueMidgame / 8;
1641
1642     // Initialize a MovePicker object for the current position, and prepare
1643     // to search the moves. Because the depth is <= 0 here, only captures,
1644     // queen promotions and checks (only if depth == 0 or depth == -OnePly
1645     // and we are near beta) will be generated.
1646     MovePicker mp = MovePicker(pos, ttMove, deepChecks ? Depth(0) : depth, H);
1647     CheckInfo ci(pos);
1648     enoughMaterial = pos.non_pawn_material(pos.side_to_move()) > RookValueMidgame;
1649     futilityBase = staticValue + FutilityMarginQS + ei.futilityMargin[pos.side_to_move()];
1650
1651     // Loop through the moves until no moves remain or a beta cutoff
1652     // occurs.
1653     while (   alpha < beta
1654            && (move = mp.get_next_move()) != MOVE_NONE)
1655     {
1656       assert(move_is_ok(move));
1657
1658       moveIsCheck = pos.move_is_check(move, ci);
1659
1660       // Update current move
1661       moveCount++;
1662       ss[ply].currentMove = move;
1663
1664       // Futility pruning
1665       if (   enoughMaterial
1666           && !isCheck
1667           && !pvNode
1668           && !moveIsCheck
1669           &&  move != ttMove
1670           && !move_is_promotion(move)
1671           && !pos.move_is_passed_pawn_push(move))
1672       {
1673           futilityValue =  futilityBase
1674                          + pos.endgame_value_of_piece_on(move_to(move))
1675                          + (move_is_ep(move) ? PawnValueEndgame : Value(0));
1676
1677           if (futilityValue < alpha)
1678           {
1679               if (futilityValue > bestValue)
1680                   bestValue = futilityValue;
1681               continue;
1682           }
1683       }
1684
1685       // Detect blocking evasions that are candidate to be pruned
1686       evasionPrunable =   isCheck
1687                        && bestValue != -VALUE_INFINITE
1688                        && !pos.move_is_capture(move)
1689                        && pos.type_of_piece_on(move_from(move)) != KING
1690                        && !pos.can_castle(pos.side_to_move());
1691
1692       // Don't search moves with negative SEE values
1693       if (   (!isCheck || evasionPrunable)
1694           && !pvNode
1695           &&  move != ttMove
1696           && !move_is_promotion(move)
1697           &&  pos.see_sign(move) < 0)
1698           continue;
1699
1700       // Make and search the move
1701       pos.do_move(move, st, ci, moveIsCheck);
1702       value = -qsearch(pos, ss, -beta, -alpha, depth-OnePly, ply+1, threadID);
1703       pos.undo_move(move);
1704
1705       assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);
1706
1707       // New best move?
1708       if (value > bestValue)
1709       {
1710           bestValue = value;
1711           if (value > alpha)
1712           {
1713               alpha = value;
1714               update_pv(ss, ply);
1715           }
1716        }
1717     }
1718
1719     // All legal moves have been searched. A special case: If we're in check
1720     // and no legal moves were found, it is checkmate.
1721     if (!moveCount && pos.is_check()) // Mate!
1722         return value_mated_in(ply);
1723
1724     // Update transposition table
1725     Depth d = (depth == Depth(0) ? Depth(0) : Depth(-1));
1726     if (bestValue <= oldAlpha)
1727     {
1728         // If bestValue isn't changed it means it is still the static evaluation
1729         // of the node, so keep this info to avoid a future evaluation() call.
1730         ValueType type = (bestValue == staticValue && !ei.futilityMargin[pos.side_to_move()] ? VALUE_TYPE_EV_UP : VALUE_TYPE_UPPER);
1731         TT.store(pos.get_key(), value_to_tt(bestValue, ply), type, d, MOVE_NONE);
1732     }
1733     else if (bestValue >= beta)
1734     {
1735         move = ss[ply].pv[ply];
1736         TT.store(pos.get_key(), value_to_tt(bestValue, ply), VALUE_TYPE_LOWER, d, move);
1737
1738         // Update killers only for good checking moves
1739         if (!pos.move_is_capture_or_promotion(move))
1740             update_killers(move, ss[ply]);
1741     }
1742     else
1743         TT.store(pos.get_key(), value_to_tt(bestValue, ply), VALUE_TYPE_EXACT, d, ss[ply].pv[ply]);
1744
1745     assert(bestValue > -VALUE_INFINITE && bestValue < VALUE_INFINITE);
1746
1747     return bestValue;
1748   }
1749
1750
1751   // sp_search() is used to search from a split point.  This function is called
1752   // by each thread working at the split point.  It is similar to the normal
1753   // search() function, but simpler.  Because we have already probed the hash
1754   // table, done a null move search, and searched the first move before
1755   // splitting, we don't have to repeat all this work in sp_search().  We
1756   // also don't need to store anything to the hash table here:  This is taken
1757   // care of after we return from the split point.
1758
1759   void sp_search(SplitPoint* sp, int threadID) {
1760
1761     assert(threadID >= 0 && threadID < TM.active_threads());
1762     assert(TM.active_threads() > 1);
1763
1764     Position pos(*sp->pos);
1765     CheckInfo ci(pos);
1766     SearchStack* ss = sp->sstack[threadID];
1767     Value value = -VALUE_INFINITE;
1768     Move move;
1769     int moveCount;
1770     bool isCheck = pos.is_check();
1771     bool useFutilityPruning =     sp->depth < 7 * OnePly //FIXME: sync with search
1772                               && !isCheck;
1773
1774     while (    lock_grab_bool(&(sp->lock))
1775            &&  sp->bestValue < sp->beta
1776            && !TM.thread_should_stop(threadID)
1777            && (move = sp->mp->get_next_move()) != MOVE_NONE)
1778     {
1779       moveCount = ++sp->moves;
1780       lock_release(&(sp->lock));
1781
1782       assert(move_is_ok(move));
1783
1784       bool moveIsCheck = pos.move_is_check(move, ci);
1785       bool captureOrPromotion = pos.move_is_capture_or_promotion(move);
1786
1787       ss[sp->ply].currentMove = move;
1788
1789       // Decide the new search depth
1790       bool dangerous;
1791       Depth ext = extension(pos, move, false, captureOrPromotion, moveIsCheck, false, false, &dangerous);
1792       Depth newDepth = sp->depth - OnePly + ext;
1793
1794       // Prune?
1795       if (    useFutilityPruning
1796           && !dangerous
1797           && !captureOrPromotion)
1798       {
1799           // Move count based pruning
1800           if (   moveCount >= futility_move_count(sp->depth)
1801               && ok_to_prune(pos, move, ss[sp->ply].threatMove)
1802               && sp->bestValue > value_mated_in(PLY_MAX))
1803               continue;
1804
1805           // Value based pruning
1806           Value futilityValueScaled = sp->futilityValue - moveCount * 8; //FIXME: sync with search
1807
1808           if (futilityValueScaled < sp->beta)
1809           {
1810               if (futilityValueScaled > sp->bestValue) // Less then 1% of cases
1811               {
1812                   lock_grab(&(sp->lock));
1813                   if (futilityValueScaled > sp->bestValue)
1814                       sp->bestValue = futilityValueScaled;
1815                   lock_release(&(sp->lock));
1816               }
1817               continue;
1818           }
1819       }
1820
1821       // Make and search the move.
1822       StateInfo st;
1823       pos.do_move(move, st, ci, moveIsCheck);
1824
1825       // Try to reduce non-pv search depth by one ply if move seems not problematic,
1826       // if the move fails high will be re-searched at full depth.
1827       bool doFullDepthSearch = true;
1828
1829       if (   !dangerous
1830           && !captureOrPromotion
1831           && !move_is_castle(move)
1832           && !move_is_killer(move, ss[sp->ply]))
1833       {
1834           ss[sp->ply].reduction = nonpv_reduction(sp->depth, moveCount);
1835           if (ss[sp->ply].reduction)
1836           {
1837               value = -search(pos, ss, -(sp->beta-1), newDepth-ss[sp->ply].reduction, sp->ply+1, true, threadID);
1838               doFullDepthSearch = (value >= sp->beta && !TM.thread_should_stop(threadID));
1839           }
1840       }
1841
1842       if (doFullDepthSearch) // Go with full depth non-pv search
1843       {
1844           ss[sp->ply].reduction = Depth(0);
1845           value = -search(pos, ss, -(sp->beta - 1), newDepth, sp->ply+1, true, threadID);
1846       }
1847       pos.undo_move(move);
1848
1849       assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);
1850
1851       // New best move?
1852       if (value > sp->bestValue) // Less then 2% of cases
1853       {
1854           lock_grab(&(sp->lock));
1855           if (value > sp->bestValue && !TM.thread_should_stop(threadID))
1856           {
1857               sp->bestValue = value;
1858               if (sp->bestValue >= sp->beta)
1859               {
1860                   sp->stopRequest = true;
1861                   sp_update_pv(sp->parentSstack, ss, sp->ply);
1862               }
1863           }
1864           lock_release(&(sp->lock));
1865       }
1866     }
1867
1868     /* Here we have the lock still grabbed */
1869
1870     sp->cpus--;
1871     sp->slaves[threadID] = 0;
1872
1873     lock_release(&(sp->lock));
1874   }
1875
1876
1877   // sp_search_pv() is used to search from a PV split point.  This function
1878   // is called by each thread working at the split point.  It is similar to
1879   // the normal search_pv() function, but simpler.  Because we have already
1880   // probed the hash table and searched the first move before splitting, we
1881   // don't have to repeat all this work in sp_search_pv().  We also don't
1882   // need to store anything to the hash table here: This is taken care of
1883   // after we return from the split point.
1884
1885   void sp_search_pv(SplitPoint* sp, int threadID) {
1886
1887     assert(threadID >= 0 && threadID < TM.active_threads());
1888     assert(TM.active_threads() > 1);
1889
1890     Position pos(*sp->pos);
1891     CheckInfo ci(pos);
1892     SearchStack* ss = sp->sstack[threadID];
1893     Value value = -VALUE_INFINITE;
1894     int moveCount;
1895     Move move;
1896
1897     while (    lock_grab_bool(&(sp->lock))
1898            &&  sp->alpha < sp->beta
1899            && !TM.thread_should_stop(threadID)
1900            && (move = sp->mp->get_next_move()) != MOVE_NONE)
1901     {
1902       moveCount = ++sp->moves;
1903       lock_release(&(sp->lock));
1904
1905       assert(move_is_ok(move));
1906
1907       bool moveIsCheck = pos.move_is_check(move, ci);
1908       bool captureOrPromotion = pos.move_is_capture_or_promotion(move);
1909
1910       ss[sp->ply].currentMove = move;
1911
1912       // Decide the new search depth
1913       bool dangerous;
1914       Depth ext = extension(pos, move, true, captureOrPromotion, moveIsCheck, false, false, &dangerous);
1915       Depth newDepth = sp->depth - OnePly + ext;
1916
1917       // Make and search the move.
1918       StateInfo st;
1919       pos.do_move(move, st, ci, moveIsCheck);
1920
1921       // Try to reduce non-pv search depth by one ply if move seems not problematic,
1922       // if the move fails high will be re-searched at full depth.
1923       bool doFullDepthSearch = true;
1924
1925       if (   !dangerous
1926           && !captureOrPromotion
1927           && !move_is_castle(move)
1928           && !move_is_killer(move, ss[sp->ply]))
1929       {
1930           ss[sp->ply].reduction = pv_reduction(sp->depth, moveCount);
1931           if (ss[sp->ply].reduction)
1932           {
1933               Value localAlpha = sp->alpha;
1934               value = -search(pos, ss, -localAlpha, newDepth-ss[sp->ply].reduction, sp->ply+1, true, threadID);
1935               doFullDepthSearch = (value > localAlpha && !TM.thread_should_stop(threadID));
1936           }
1937       }
1938
1939       if (doFullDepthSearch) // Go with full depth non-pv search
1940       {
1941           Value localAlpha = sp->alpha;
1942           ss[sp->ply].reduction = Depth(0);
1943           value = -search(pos, ss, -localAlpha, newDepth, sp->ply+1, true, threadID);
1944
1945           if (value > localAlpha && value < sp->beta && !TM.thread_should_stop(threadID))
1946           {
1947               // If another thread has failed high then sp->alpha has been increased
1948               // to be higher or equal then beta, if so, avoid to start a PV search.
1949               localAlpha = sp->alpha;
1950               if (localAlpha < sp->beta)
1951                   value = -search_pv(pos, ss, -sp->beta, -localAlpha, newDepth, sp->ply+1, threadID);
1952           }
1953       }
1954       pos.undo_move(move);
1955
1956       assert(value > -VALUE_INFINITE && value < VALUE_INFINITE);
1957
1958       // New best move?
1959       if (value > sp->bestValue) // Less then 2% of cases
1960       {
1961           lock_grab(&(sp->lock));
1962           if (value > sp->bestValue && !TM.thread_should_stop(threadID))
1963           {
1964               sp->bestValue = value;
1965               if (value > sp->alpha)
1966               {
1967                   // Ask threads to stop before to modify sp->alpha
1968                   if (value >= sp->beta)
1969                       sp->stopRequest = true;
1970
1971                   sp->alpha = value;
1972
1973                   sp_update_pv(sp->parentSstack, ss, sp->ply);
1974                   if (value == value_mate_in(sp->ply + 1))
1975                       ss[sp->ply].mateKiller = move;
1976               }
1977           }
1978           lock_release(&(sp->lock));
1979       }
1980     }
1981
1982     /* Here we have the lock still grabbed */
1983
1984     sp->cpus--;
1985     sp->slaves[threadID] = 0;
1986
1987     lock_release(&(sp->lock));
1988   }
1989
1990
1991   // init_node() is called at the beginning of all the search functions
1992   // (search(), search_pv(), qsearch(), and so on) and initializes the
1993   // search stack object corresponding to the current node. Once every
1994   // NodesBetweenPolls nodes, init_node() also calls poll(), which polls
1995   // for user input and checks whether it is time to stop the search.
1996
1997   void init_node(SearchStack ss[], int ply, int threadID) {
1998
1999     assert(ply >= 0 && ply < PLY_MAX);
2000     assert(threadID >= 0 && threadID < TM.active_threads());
2001
2002     TM.incrementNodeCounter(threadID);
2003
2004     if (threadID == 0)
2005     {
2006         NodesSincePoll++;
2007         if (NodesSincePoll >= NodesBetweenPolls)
2008         {
2009             poll();
2010             NodesSincePoll = 0;
2011         }
2012     }
2013     ss[ply].init(ply);
2014     ss[ply + 2].initKillers();
2015     TM.print_current_line(ss, ply, threadID);
2016   }
2017
2018
2019   // update_pv() is called whenever a search returns a value > alpha.
2020   // It updates the PV in the SearchStack object corresponding to the
2021   // current node.
2022
2023   void update_pv(SearchStack ss[], int ply) {
2024
2025     assert(ply >= 0 && ply < PLY_MAX);
2026
2027     int p;
2028
2029     ss[ply].pv[ply] = ss[ply].currentMove;
2030
2031     for (p = ply + 1; ss[ply + 1].pv[p] != MOVE_NONE; p++)
2032         ss[ply].pv[p] = ss[ply + 1].pv[p];
2033
2034     ss[ply].pv[p] = MOVE_NONE;
2035   }
2036
2037
2038   // sp_update_pv() is a variant of update_pv for use at split points. The
2039   // difference between the two functions is that sp_update_pv also updates
2040   // the PV at the parent node.
2041
2042   void sp_update_pv(SearchStack* pss, SearchStack ss[], int ply) {
2043
2044     assert(ply >= 0 && ply < PLY_MAX);
2045
2046     int p;
2047
2048     ss[ply].pv[ply] = pss[ply].pv[ply] = ss[ply].currentMove;
2049
2050     for (p = ply + 1; ss[ply + 1].pv[p] != MOVE_NONE; p++)
2051         ss[ply].pv[p] = pss[ply].pv[p] = ss[ply + 1].pv[p];
2052
2053     ss[ply].pv[p] = pss[ply].pv[p] = MOVE_NONE;
2054   }
2055
2056
2057   // connected_moves() tests whether two moves are 'connected' in the sense
2058   // that the first move somehow made the second move possible (for instance
2059   // if the moving piece is the same in both moves). The first move is assumed
2060   // to be the move that was made to reach the current position, while the
2061   // second move is assumed to be a move from the current position.
2062
2063   bool connected_moves(const Position& pos, Move m1, Move m2) {
2064
2065     Square f1, t1, f2, t2;
2066     Piece p;
2067
2068     assert(move_is_ok(m1));
2069     assert(move_is_ok(m2));
2070
2071     if (m2 == MOVE_NONE)
2072         return false;
2073
2074     // Case 1: The moving piece is the same in both moves
2075     f2 = move_from(m2);
2076     t1 = move_to(m1);
2077     if (f2 == t1)
2078         return true;
2079
2080     // Case 2: The destination square for m2 was vacated by m1
2081     t2 = move_to(m2);
2082     f1 = move_from(m1);
2083     if (t2 == f1)
2084         return true;
2085
2086     // Case 3: Moving through the vacated square
2087     if (   piece_is_slider(pos.piece_on(f2))
2088         && bit_is_set(squares_between(f2, t2), f1))
2089       return true;
2090
2091     // Case 4: The destination square for m2 is defended by the moving piece in m1
2092     p = pos.piece_on(t1);
2093     if (bit_is_set(pos.attacks_from(p, t1), t2))
2094         return true;
2095
2096     // Case 5: Discovered check, checking piece is the piece moved in m1
2097     if (    piece_is_slider(p)
2098         &&  bit_is_set(squares_between(t1, pos.king_square(pos.side_to_move())), f2)
2099         && !bit_is_set(squares_between(t1, pos.king_square(pos.side_to_move())), t2))
2100     {
2101         // discovered_check_candidates() works also if the Position's side to
2102         // move is the opposite of the checking piece.
2103         Color them = opposite_color(pos.side_to_move());
2104         Bitboard dcCandidates = pos.discovered_check_candidates(them);
2105
2106         if (bit_is_set(dcCandidates, f2))
2107             return true;
2108     }
2109     return false;
2110   }
2111
2112
2113   // value_is_mate() checks if the given value is a mate one
2114   // eventually compensated for the ply.
2115
2116   bool value_is_mate(Value value) {
2117
2118     assert(abs(value) <= VALUE_INFINITE);
2119
2120     return   value <= value_mated_in(PLY_MAX)
2121           || value >= value_mate_in(PLY_MAX);
2122   }
2123
2124
2125   // move_is_killer() checks if the given move is among the
2126   // killer moves of that ply.
2127
2128   bool move_is_killer(Move m, const SearchStack& ss) {
2129
2130       const Move* k = ss.killers;
2131       for (int i = 0; i < KILLER_MAX; i++, k++)
2132           if (*k == m)
2133               return true;
2134
2135       return false;
2136   }
2137
2138
2139   // extension() decides whether a move should be searched with normal depth,
2140   // or with extended depth. Certain classes of moves (checking moves, in
2141   // particular) are searched with bigger depth than ordinary moves and in
2142   // any case are marked as 'dangerous'. Note that also if a move is not
2143   // extended, as example because the corresponding UCI option is set to zero,
2144   // the move is marked as 'dangerous' so, at least, we avoid to prune it.
2145
2146   Depth extension(const Position& pos, Move m, bool pvNode, bool captureOrPromotion,
2147                   bool moveIsCheck, bool singleEvasion, bool mateThreat, bool* dangerous) {
2148
2149     assert(m != MOVE_NONE);
2150
2151     Depth result = Depth(0);
2152     *dangerous = moveIsCheck | singleEvasion | mateThreat;
2153
2154     if (*dangerous)
2155     {
2156         if (moveIsCheck)
2157             result += CheckExtension[pvNode];
2158
2159         if (singleEvasion)
2160             result += SingleEvasionExtension[pvNode];
2161
2162         if (mateThreat)
2163             result += MateThreatExtension[pvNode];
2164     }
2165
2166     if (pos.type_of_piece_on(move_from(m)) == PAWN)
2167     {
2168         Color c = pos.side_to_move();
2169         if (relative_rank(c, move_to(m)) == RANK_7)
2170         {
2171             result += PawnPushTo7thExtension[pvNode];
2172             *dangerous = true;
2173         }
2174         if (pos.pawn_is_passed(c, move_to(m)))
2175         {
2176             result += PassedPawnExtension[pvNode];
2177             *dangerous = true;
2178         }
2179     }
2180
2181     if (   captureOrPromotion
2182         && pos.type_of_piece_on(move_to(m)) != PAWN
2183         && (  pos.non_pawn_material(WHITE) + pos.non_pawn_material(BLACK)
2184             - pos.midgame_value_of_piece_on(move_to(m)) == Value(0))
2185         && !move_is_promotion(m)
2186         && !move_is_ep(m))
2187     {
2188         result += PawnEndgameExtension[pvNode];
2189         *dangerous = true;
2190     }
2191
2192     if (   pvNode
2193         && captureOrPromotion
2194         && pos.type_of_piece_on(move_to(m)) != PAWN
2195         && pos.see_sign(m) >= 0)
2196     {
2197         result += OnePly/2;
2198         *dangerous = true;
2199     }
2200
2201     return Min(result, OnePly);
2202   }
2203
2204
2205   // ok_to_do_nullmove() looks at the current position and decides whether
2206   // doing a 'null move' should be allowed. In order to avoid zugzwang
2207   // problems, null moves are not allowed when the side to move has very
2208   // little material left. Currently, the test is a bit too simple: Null
2209   // moves are avoided only when the side to move has only pawns left.
2210   // It's probably a good idea to avoid null moves in at least some more
2211   // complicated endgames, e.g. KQ vs KR.  FIXME
2212
2213   bool ok_to_do_nullmove(const Position& pos) {
2214
2215     return pos.non_pawn_material(pos.side_to_move()) != Value(0);
2216   }
2217
2218
2219   // ok_to_prune() tests whether it is safe to forward prune a move. Only
2220   // non-tactical moves late in the move list close to the leaves are
2221   // candidates for pruning.
2222
2223   bool ok_to_prune(const Position& pos, Move m, Move threat) {
2224
2225     assert(move_is_ok(m));
2226     assert(threat == MOVE_NONE || move_is_ok(threat));
2227     assert(!pos.move_is_check(m));
2228     assert(!pos.move_is_capture_or_promotion(m));
2229     assert(!pos.move_is_passed_pawn_push(m));
2230
2231     Square mfrom, mto, tfrom, tto;
2232
2233     // Prune if there isn't any threat move
2234     if (threat == MOVE_NONE)
2235         return true;
2236
2237     mfrom = move_from(m);
2238     mto = move_to(m);
2239     tfrom = move_from(threat);
2240     tto = move_to(threat);
2241
2242     // Case 1: Don't prune moves which move the threatened piece
2243     if (mfrom == tto)
2244         return false;
2245
2246     // Case 2: If the threatened piece has value less than or equal to the
2247     // value of the threatening piece, don't prune move which defend it.
2248     if (   pos.move_is_capture(threat)
2249         && (   pos.midgame_value_of_piece_on(tfrom) >= pos.midgame_value_of_piece_on(tto)
2250             || pos.type_of_piece_on(tfrom) == KING)
2251         && pos.move_attacks_square(m, tto))
2252         return false;
2253
2254     // Case 3: If the moving piece in the threatened move is a slider, don't
2255     // prune safe moves which block its ray.
2256     if (   piece_is_slider(pos.piece_on(tfrom))
2257         && bit_is_set(squares_between(tfrom, tto), mto)
2258         && pos.see_sign(m) >= 0)
2259         return false;
2260
2261     return true;
2262   }
2263
2264
2265   // ok_to_use_TT() returns true if a transposition table score
2266   // can be used at a given point in search.
2267
2268   bool ok_to_use_TT(const TTEntry* tte, Depth depth, Value beta, int ply) {
2269
2270     Value v = value_from_tt(tte->value(), ply);
2271
2272     return   (   tte->depth() >= depth
2273               || v >= Max(value_mate_in(PLY_MAX), beta)
2274               || v < Min(value_mated_in(PLY_MAX), beta))
2275
2276           && (   (is_lower_bound(tte->type()) && v >= beta)
2277               || (is_upper_bound(tte->type()) && v < beta));
2278   }
2279
2280
2281   // refine_eval() returns the transposition table score if
2282   // possible otherwise falls back on static position evaluation.
2283
2284   Value refine_eval(const TTEntry* tte, Value defaultEval, int ply) {
2285
2286       if (!tte)
2287           return defaultEval;
2288
2289       Value v = value_from_tt(tte->value(), ply);
2290
2291       if (   (is_lower_bound(tte->type()) && v >= defaultEval)
2292           || (is_upper_bound(tte->type()) && v < defaultEval))
2293           return v;
2294
2295       return defaultEval;
2296   }
2297
2298
2299   // update_history() registers a good move that produced a beta-cutoff
2300   // in history and marks as failures all the other moves of that ply.
2301
2302   void update_history(const Position& pos, Move move, Depth depth,
2303                       Move movesSearched[], int moveCount) {
2304
2305     Move m;
2306
2307     H.success(pos.piece_on(move_from(move)), move_to(move), depth);
2308
2309     for (int i = 0; i < moveCount - 1; i++)
2310     {
2311         m = movesSearched[i];
2312
2313         assert(m != move);
2314
2315         if (!pos.move_is_capture_or_promotion(m))
2316             H.failure(pos.piece_on(move_from(m)), move_to(m), depth);
2317     }
2318   }
2319
2320
2321   // update_killers() add a good move that produced a beta-cutoff
2322   // among the killer moves of that ply.
2323
2324   void update_killers(Move m, SearchStack& ss) {
2325
2326     if (m == ss.killers[0])
2327         return;
2328
2329     for (int i = KILLER_MAX - 1; i > 0; i--)
2330         ss.killers[i] = ss.killers[i - 1];
2331
2332     ss.killers[0] = m;
2333   }
2334
2335
2336   // update_gains() updates the gains table of a non-capture move given
2337   // the static position evaluation before and after the move.
2338
2339   void update_gains(const Position& pos, Move m, Value before, Value after) {
2340
2341     if (   m != MOVE_NULL
2342         && before != VALUE_NONE
2343         && after != VALUE_NONE
2344         && pos.captured_piece() == NO_PIECE_TYPE
2345         && !move_is_castle(m)
2346         && !move_is_promotion(m))
2347         H.set_gain(pos.piece_on(move_to(m)), move_to(m), -(before + after));
2348   }
2349
2350
2351   // current_search_time() returns the number of milliseconds which have passed
2352   // since the beginning of the current search.
2353
2354   int current_search_time() {
2355
2356     return get_system_time() - SearchStartTime;
2357   }
2358
2359
2360   // nps() computes the current nodes/second count.
2361
2362   int nps() {
2363
2364     int t = current_search_time();
2365     return (t > 0 ? int((TM.nodes_searched() * 1000) / t) : 0);
2366   }
2367
2368
2369   // poll() performs two different functions: It polls for user input, and it
2370   // looks at the time consumed so far and decides if it's time to abort the
2371   // search.
2372
2373   void poll() {
2374
2375     static int lastInfoTime;
2376     int t = current_search_time();
2377
2378     //  Poll for input
2379     if (Bioskey())
2380     {
2381         // We are line oriented, don't read single chars
2382         std::string command;
2383
2384         if (!std::getline(std::cin, command))
2385             command = "quit";
2386
2387         if (command == "quit")
2388         {
2389             AbortSearch = true;
2390             PonderSearch = false;
2391             Quit = true;
2392             return;
2393         }
2394         else if (command == "stop")
2395         {
2396             AbortSearch = true;
2397             PonderSearch = false;
2398         }
2399         else if (command == "ponderhit")
2400             ponderhit();
2401     }
2402
2403     // Print search information
2404     if (t < 1000)
2405         lastInfoTime = 0;
2406
2407     else if (lastInfoTime > t)
2408         // HACK: Must be a new search where we searched less than
2409         // NodesBetweenPolls nodes during the first second of search.
2410         lastInfoTime = 0;
2411
2412     else if (t - lastInfoTime >= 1000)
2413     {
2414         lastInfoTime = t;
2415         lock_grab(&TM.IOLock);
2416
2417         if (dbg_show_mean)
2418             dbg_print_mean();
2419
2420         if (dbg_show_hit_rate)
2421             dbg_print_hit_rate();
2422
2423         cout << "info nodes " << TM.nodes_searched() << " nps " << nps()
2424              << " time " << t << " hashfull " << TT.full() << endl;
2425
2426         lock_release(&TM.IOLock);
2427
2428         if (ShowCurrentLine)
2429             TM.threads[0].printCurrentLineRequest = true;
2430     }
2431
2432     // Should we stop the search?
2433     if (PonderSearch)
2434         return;
2435
2436     bool stillAtFirstMove =    RootMoveNumber == 1
2437                            && !AspirationFailLow
2438                            &&  t > MaxSearchTime + ExtraSearchTime;
2439
2440     bool noMoreTime =   t > AbsoluteMaxSearchTime
2441                      || stillAtFirstMove;
2442
2443     if (   (Iteration >= 3 && UseTimeManagement && noMoreTime)
2444         || (ExactMaxTime && t >= ExactMaxTime)
2445         || (Iteration >= 3 && MaxNodes && TM.nodes_searched() >= MaxNodes))
2446         AbortSearch = true;
2447   }
2448
2449
2450   // ponderhit() is called when the program is pondering (i.e. thinking while
2451   // it's the opponent's turn to move) in order to let the engine know that
2452   // it correctly predicted the opponent's move.
2453
2454   void ponderhit() {
2455
2456     int t = current_search_time();
2457     PonderSearch = false;
2458
2459     bool stillAtFirstMove =    RootMoveNumber == 1
2460                            && !AspirationFailLow
2461                            &&  t > MaxSearchTime + ExtraSearchTime;
2462
2463     bool noMoreTime =   t > AbsoluteMaxSearchTime
2464                      || stillAtFirstMove;
2465
2466     if (Iteration >= 3 && UseTimeManagement && (noMoreTime || StopOnPonderhit))
2467         AbortSearch = true;
2468   }
2469
2470
2471   // init_ss_array() does a fast reset of the first entries of a SearchStack array
2472
2473   void init_ss_array(SearchStack ss[]) {
2474
2475     for (int i = 0; i < 3; i++)
2476     {
2477         ss[i].init(i);
2478         ss[i].initKillers();
2479     }
2480   }
2481
2482
2483   // wait_for_stop_or_ponderhit() is called when the maximum depth is reached
2484   // while the program is pondering. The point is to work around a wrinkle in
2485   // the UCI protocol: When pondering, the engine is not allowed to give a
2486   // "bestmove" before the GUI sends it a "stop" or "ponderhit" command.
2487   // We simply wait here until one of these commands is sent, and return,
2488   // after which the bestmove and pondermove will be printed (in id_loop()).
2489
2490   void wait_for_stop_or_ponderhit() {
2491
2492     std::string command;
2493
2494     while (true)
2495     {
2496         if (!std::getline(std::cin, command))
2497             command = "quit";
2498
2499         if (command == "quit")
2500         {
2501             Quit = true;
2502             break;
2503         }
2504         else if (command == "ponderhit" || command == "stop")
2505             break;
2506     }
2507   }
2508
2509
2510   // init_thread() is the function which is called when a new thread is
2511   // launched. It simply calls the idle_loop() function with the supplied
2512   // threadID. There are two versions of this function; one for POSIX
2513   // threads and one for Windows threads.
2514
2515 #if !defined(_MSC_VER)
2516
2517   void* init_thread(void *threadID) {
2518
2519     TM.idle_loop(*(int*)threadID, NULL);
2520     return NULL;
2521   }
2522
2523 #else
2524
2525   DWORD WINAPI init_thread(LPVOID threadID) {
2526
2527     TM.idle_loop(*(int*)threadID, NULL);
2528     return NULL;
2529   }
2530
2531 #endif
2532
2533
2534   /// The ThreadsManager class
2535
2536   // resetNodeCounters(), resetBetaCounters(), searched_nodes() and
2537   // get_beta_counters() are getters/setters for the per thread
2538   // counters used to sort the moves at root.
2539
2540   void ThreadsManager::resetNodeCounters() {
2541
2542     for (int i = 0; i < MAX_THREADS; i++)
2543         threads[i].nodes = 0ULL;
2544   }
2545
2546   void ThreadsManager::resetBetaCounters() {
2547
2548     for (int i = 0; i < MAX_THREADS; i++)
2549         threads[i].betaCutOffs[WHITE] = threads[i].betaCutOffs[BLACK] = 0ULL;
2550   }
2551
2552   int64_t ThreadsManager::nodes_searched() const {
2553
2554     int64_t result = 0ULL;
2555     for (int i = 0; i < ActiveThreads; i++)
2556         result += threads[i].nodes;
2557
2558     return result;
2559   }
2560
2561   void ThreadsManager::get_beta_counters(Color us, int64_t& our, int64_t& their) const {
2562
2563     our = their = 0UL;
2564     for (int i = 0; i < MAX_THREADS; i++)
2565     {
2566         our += threads[i].betaCutOffs[us];
2567         their += threads[i].betaCutOffs[opposite_color(us)];
2568     }
2569   }
2570
2571
2572   // idle_loop() is where the threads are parked when they have no work to do.
2573   // The parameter "waitSp", if non-NULL, is a pointer to an active SplitPoint
2574   // object for which the current thread is the master.
2575
2576   void ThreadsManager::idle_loop(int threadID, SplitPoint* waitSp) {
2577
2578     assert(threadID >= 0 && threadID < MAX_THREADS);
2579
2580     while (true)
2581     {
2582         // Slave threads can exit as soon as AllThreadsShouldExit raises,
2583         // master should exit as last one.
2584         if (AllThreadsShouldExit)
2585         {
2586             assert(!waitSp);
2587             threads[threadID].state = THREAD_TERMINATED;
2588             return;
2589         }
2590
2591         // If we are not thinking, wait for a condition to be signaled
2592         // instead of wasting CPU time polling for work.
2593         while (AllThreadsShouldSleep || threadID >= ActiveThreads)
2594         {
2595             assert(!waitSp);
2596             assert(threadID != 0);
2597             threads[threadID].state = THREAD_SLEEPING;
2598
2599 #if !defined(_MSC_VER)
2600             pthread_mutex_lock(&WaitLock);
2601             if (AllThreadsShouldSleep || threadID >= ActiveThreads)
2602                 pthread_cond_wait(&WaitCond, &WaitLock);
2603             pthread_mutex_unlock(&WaitLock);
2604 #else
2605             WaitForSingleObject(SitIdleEvent[threadID], INFINITE);
2606 #endif
2607         }
2608
2609         // If thread has just woken up, mark it as available
2610         if (threads[threadID].state == THREAD_SLEEPING)
2611             threads[threadID].state = THREAD_AVAILABLE;
2612
2613         // If this thread has been assigned work, launch a search
2614         if (threads[threadID].state == THREAD_WORKISWAITING)
2615         {
2616             assert(!AllThreadsShouldExit && !AllThreadsShouldSleep);
2617
2618             threads[threadID].state = THREAD_SEARCHING;
2619
2620             if (threads[threadID].splitPoint->pvNode)
2621                 sp_search_pv(threads[threadID].splitPoint, threadID);
2622             else
2623                 sp_search(threads[threadID].splitPoint, threadID);
2624
2625             assert(threads[threadID].state == THREAD_SEARCHING);
2626
2627             threads[threadID].state = THREAD_AVAILABLE;
2628         }
2629
2630         // If this thread is the master of a split point and all threads have
2631         // finished their work at this split point, return from the idle loop.
2632         if (waitSp != NULL && waitSp->cpus == 0)
2633         {
2634             assert(threads[threadID].state == THREAD_AVAILABLE);
2635
2636             threads[threadID].state = THREAD_SEARCHING;
2637             return;
2638         }
2639     }
2640   }
2641
2642
2643   // init_threads() is called during startup. It launches all helper threads,
2644   // and initializes the split point stack and the global locks and condition
2645   // objects.
2646
2647   void ThreadsManager::init_threads() {
2648
2649     volatile int i;
2650     bool ok;
2651
2652 #if !defined(_MSC_VER)
2653     pthread_t pthread[1];
2654 #endif
2655
2656     // Initialize global locks
2657     lock_init(&MPLock, NULL);
2658     lock_init(&IOLock, NULL);
2659
2660     // Initialize SplitPointStack locks
2661     for (i = 0; i < MAX_THREADS; i++)
2662         for (int j = 0; j < ACTIVE_SPLIT_POINTS_MAX; j++)
2663         {
2664             SplitPointStack[i][j].parent = NULL;
2665             lock_init(&(SplitPointStack[i][j].lock), NULL);
2666         }
2667
2668 #if !defined(_MSC_VER)
2669     pthread_mutex_init(&WaitLock, NULL);
2670     pthread_cond_init(&WaitCond, NULL);
2671 #else
2672     for (i = 0; i < MAX_THREADS; i++)
2673         SitIdleEvent[i] = CreateEvent(0, FALSE, FALSE, 0);
2674 #endif
2675
2676     // Will be set just before program exits to properly end the threads
2677     AllThreadsShouldExit = false;
2678
2679     // Threads will be put to sleep as soon as created
2680     AllThreadsShouldSleep = true;
2681
2682     // All threads except the main thread should be initialized to THREAD_AVAILABLE
2683     ActiveThreads = 1;
2684     threads[0].state = THREAD_SEARCHING;
2685     for (i = 1; i < MAX_THREADS; i++)
2686         threads[i].state = THREAD_AVAILABLE;
2687
2688     // Launch the helper threads
2689     for (i = 1; i < MAX_THREADS; i++)
2690     {
2691
2692 #if !defined(_MSC_VER)
2693         ok = (pthread_create(pthread, NULL, init_thread, (void*)(&i)) == 0);
2694 #else
2695         DWORD iID[1];
2696         ok = (CreateThread(NULL, 0, init_thread, (LPVOID)(&i), 0, iID) != NULL);
2697 #endif
2698
2699         if (!ok)
2700         {
2701             cout << "Failed to create thread number " << i << endl;
2702             Application::exit_with_failure();
2703         }
2704
2705         // Wait until the thread has finished launching and is gone to sleep
2706         while (threads[i].state != THREAD_SLEEPING);
2707     }
2708   }
2709
2710
2711   // exit_threads() is called when the program exits. It makes all the
2712   // helper threads exit cleanly.
2713
2714   void ThreadsManager::exit_threads() {
2715
2716     ActiveThreads = MAX_THREADS;  // HACK
2717     AllThreadsShouldSleep = true;  // HACK
2718     wake_sleeping_threads();
2719
2720     // This makes the threads to exit idle_loop()
2721     AllThreadsShouldExit = true;
2722
2723     // Wait for thread termination
2724     for (int i = 1; i < MAX_THREADS; i++)
2725         while (threads[i].state != THREAD_TERMINATED);
2726
2727     // Now we can safely destroy the locks
2728     for (int i = 0; i < MAX_THREADS; i++)
2729         for (int j = 0; j < ACTIVE_SPLIT_POINTS_MAX; j++)
2730             lock_destroy(&(SplitPointStack[i][j].lock));
2731   }
2732
2733
2734   // thread_should_stop() checks whether the thread should stop its search.
2735   // This can happen if a beta cutoff has occurred in the thread's currently
2736   // active split point, or in some ancestor of the current split point.
2737
2738   bool ThreadsManager::thread_should_stop(int threadID) const {
2739
2740     assert(threadID >= 0 && threadID < ActiveThreads);
2741
2742     SplitPoint* sp;
2743
2744     for (sp = threads[threadID].splitPoint; sp && !sp->stopRequest; sp = sp->parent);
2745     return sp != NULL;
2746   }
2747
2748
2749   // thread_is_available() checks whether the thread with threadID "slave" is
2750   // available to help the thread with threadID "master" at a split point. An
2751   // obvious requirement is that "slave" must be idle. With more than two
2752   // threads, this is not by itself sufficient:  If "slave" is the master of
2753   // some active split point, it is only available as a slave to the other
2754   // threads which are busy searching the split point at the top of "slave"'s
2755   // split point stack (the "helpful master concept" in YBWC terminology).
2756
2757   bool ThreadsManager::thread_is_available(int slave, int master) const {
2758
2759     assert(slave >= 0 && slave < ActiveThreads);
2760     assert(master >= 0 && master < ActiveThreads);
2761     assert(ActiveThreads > 1);
2762
2763     if (threads[slave].state != THREAD_AVAILABLE || slave == master)
2764         return false;
2765
2766     // Make a local copy to be sure doesn't change under our feet
2767     int localActiveSplitPoints = threads[slave].activeSplitPoints;
2768
2769     if (localActiveSplitPoints == 0)
2770         // No active split points means that the thread is available as
2771         // a slave for any other thread.
2772         return true;
2773
2774     if (ActiveThreads == 2)
2775         return true;
2776
2777     // Apply the "helpful master" concept if possible. Use localActiveSplitPoints
2778     // that is known to be > 0, instead of threads[slave].activeSplitPoints that
2779     // could have been set to 0 by another thread leading to an out of bound access.
2780     if (SplitPointStack[slave][localActiveSplitPoints - 1].slaves[master])
2781         return true;
2782
2783     return false;
2784   }
2785
2786
2787   // available_thread_exists() tries to find an idle thread which is available as
2788   // a slave for the thread with threadID "master".
2789
2790   bool ThreadsManager::available_thread_exists(int master) const {
2791
2792     assert(master >= 0 && master < ActiveThreads);
2793     assert(ActiveThreads > 1);
2794
2795     for (int i = 0; i < ActiveThreads; i++)
2796         if (thread_is_available(i, master))
2797             return true;
2798
2799     return false;
2800   }
2801
2802
2803   // split() does the actual work of distributing the work at a node between
2804   // several threads at PV nodes. If it does not succeed in splitting the
2805   // node (because no idle threads are available, or because we have no unused
2806   // split point objects), the function immediately returns false. If
2807   // splitting is possible, a SplitPoint object is initialized with all the
2808   // data that must be copied to the helper threads (the current position and
2809   // search stack, alpha, beta, the search depth, etc.), and we tell our
2810   // helper threads that they have been assigned work. This will cause them
2811   // to instantly leave their idle loops and call sp_search_pv(). When all
2812   // threads have returned from sp_search_pv (or, equivalently, when
2813   // splitPoint->cpus becomes 0), split() returns true.
2814
2815   bool ThreadsManager::split(const Position& p, SearchStack* sstck, int ply,
2816              Value* alpha, const Value beta, Value* bestValue, const Value futilityValue,
2817              Depth depth, int* moves, MovePicker* mp, int master, bool pvNode) {
2818
2819     assert(p.is_ok());
2820     assert(sstck != NULL);
2821     assert(ply >= 0 && ply < PLY_MAX);
2822     assert(*bestValue >= -VALUE_INFINITE);
2823     assert(   ( pvNode && *bestValue <= *alpha)
2824            || (!pvNode && *bestValue <   beta ));
2825     assert(!pvNode || *alpha < beta);
2826     assert(beta <= VALUE_INFINITE);
2827     assert(depth > Depth(0));
2828     assert(master >= 0 && master < ActiveThreads);
2829     assert(ActiveThreads > 1);
2830
2831     SplitPoint* splitPoint;
2832
2833     lock_grab(&MPLock);
2834
2835     // If no other thread is available to help us, or if we have too many
2836     // active split points, don't split.
2837     if (   !available_thread_exists(master)
2838         || threads[master].activeSplitPoints >= ACTIVE_SPLIT_POINTS_MAX)
2839     {
2840         lock_release(&MPLock);
2841         return false;
2842     }
2843
2844     // Pick the next available split point object from the split point stack
2845     splitPoint = &SplitPointStack[master][threads[master].activeSplitPoints];
2846
2847     // Initialize the split point object
2848     splitPoint->parent = threads[master].splitPoint;
2849     splitPoint->stopRequest = false;
2850     splitPoint->ply = ply;
2851     splitPoint->depth = depth;
2852     splitPoint->alpha = pvNode ? *alpha : beta - 1;
2853     splitPoint->beta = beta;
2854     splitPoint->pvNode = pvNode;
2855     splitPoint->bestValue = *bestValue;
2856     splitPoint->futilityValue = futilityValue;
2857     splitPoint->master = master;
2858     splitPoint->mp = mp;
2859     splitPoint->moves = *moves;
2860     splitPoint->cpus = 1;
2861     splitPoint->pos = &p;
2862     splitPoint->parentSstack = sstck;
2863     for (int i = 0; i < ActiveThreads; i++)
2864         splitPoint->slaves[i] = 0;
2865
2866     threads[master].splitPoint = splitPoint;
2867     threads[master].activeSplitPoints++;
2868
2869     // If we are here it means we are not available
2870     assert(threads[master].state != THREAD_AVAILABLE);
2871
2872     // Allocate available threads setting state to THREAD_BOOKED
2873     for (int i = 0; i < ActiveThreads && splitPoint->cpus < MaxThreadsPerSplitPoint; i++)
2874         if (thread_is_available(i, master))
2875         {
2876             threads[i].state = THREAD_BOOKED;
2877             threads[i].splitPoint = splitPoint;
2878             splitPoint->slaves[i] = 1;
2879             splitPoint->cpus++;
2880         }
2881
2882     assert(splitPoint->cpus > 1);
2883
2884     // We can release the lock because slave threads are already booked and master is not available
2885     lock_release(&MPLock);
2886
2887     // Tell the threads that they have work to do. This will make them leave
2888     // their idle loop. But before copy search stack tail for each thread.
2889     for (int i = 0; i < ActiveThreads; i++)
2890         if (i == master || splitPoint->slaves[i])
2891         {
2892             memcpy(splitPoint->sstack[i] + ply - 1, sstck + ply - 1, 4 * sizeof(SearchStack));
2893
2894             assert(i == master || threads[i].state == THREAD_BOOKED);
2895
2896             threads[i].state = THREAD_WORKISWAITING; // This makes the slave to exit from idle_loop()
2897         }
2898
2899     // Everything is set up. The master thread enters the idle loop, from
2900     // which it will instantly launch a search, because its state is
2901     // THREAD_WORKISWAITING.  We send the split point as a second parameter to the
2902     // idle loop, which means that the main thread will return from the idle
2903     // loop when all threads have finished their work at this split point
2904     // (i.e. when splitPoint->cpus == 0).
2905     idle_loop(master, splitPoint);
2906
2907     // We have returned from the idle loop, which means that all threads are
2908     // finished. Update alpha, beta and bestValue, and return.
2909     lock_grab(&MPLock);
2910
2911     if (pvNode)
2912         *alpha = splitPoint->alpha;
2913
2914     *bestValue = splitPoint->bestValue;
2915     threads[master].activeSplitPoints--;
2916     threads[master].splitPoint = splitPoint->parent;
2917
2918     lock_release(&MPLock);
2919     return true;
2920   }
2921
2922
2923   // wake_sleeping_threads() wakes up all sleeping threads when it is time
2924   // to start a new search from the root.
2925
2926   void ThreadsManager::wake_sleeping_threads() {
2927
2928     assert(AllThreadsShouldSleep);
2929     assert(ActiveThreads > 0);
2930
2931     AllThreadsShouldSleep = false;
2932
2933     if (ActiveThreads == 1)
2934         return;
2935
2936     for (int i = 1; i < ActiveThreads; i++)
2937         assert(threads[i].state == THREAD_SLEEPING);
2938
2939 #if !defined(_MSC_VER)
2940     pthread_mutex_lock(&WaitLock);
2941     pthread_cond_broadcast(&WaitCond);
2942     pthread_mutex_unlock(&WaitLock);
2943 #else
2944     for (int i = 1; i < MAX_THREADS; i++)
2945         SetEvent(SitIdleEvent[i]);
2946 #endif
2947
2948   }
2949
2950
2951   // put_threads_to_sleep() makes all the threads go to sleep just before
2952   // to leave think(), at the end of the search. Threads should have already
2953   // finished the job and should be idle.
2954
2955   void ThreadsManager::put_threads_to_sleep() {
2956
2957     assert(!AllThreadsShouldSleep);
2958
2959     // This makes the threads to go to sleep
2960     AllThreadsShouldSleep = true;
2961
2962     // Reset flags to a known state.
2963     for (int i = 1; i < ActiveThreads; i++)
2964     {
2965         // This flag can be in a random state
2966         threads[i].printCurrentLineRequest = false;
2967     }
2968   }
2969
2970   // print_current_line() prints _once_ the current line of search for a
2971   // given thread and then setup the print request for the next thread.
2972   // Called when the UCI option UCI_ShowCurrLine is 'true'.
2973
2974   void ThreadsManager::print_current_line(SearchStack ss[], int ply, int threadID) {
2975
2976     assert(ply >= 0 && ply < PLY_MAX);
2977     assert(threadID >= 0 && threadID < ActiveThreads);
2978
2979     if (!threads[threadID].printCurrentLineRequest)
2980         return;
2981
2982     // One shot only
2983     threads[threadID].printCurrentLineRequest = false;
2984
2985     if (threads[threadID].state == THREAD_SEARCHING)
2986     {
2987         lock_grab(&IOLock);
2988         cout << "info currline " << (threadID + 1);
2989         for (int p = 0; p < ply; p++)
2990             cout << " " << ss[p].currentMove;
2991
2992         cout << endl;
2993         lock_release(&IOLock);
2994     }
2995
2996     // Setup print request for the next thread ID
2997     if (threadID + 1 < ActiveThreads)
2998         threads[threadID + 1].printCurrentLineRequest = true;
2999   }
3000
3001
3002   /// The RootMoveList class
3003
3004   // RootMoveList c'tor
3005
3006   RootMoveList::RootMoveList(Position& pos, Move searchMoves[]) : count(0) {
3007
3008     SearchStack ss[PLY_MAX_PLUS_2];
3009     MoveStack mlist[MaxRootMoves];
3010     StateInfo st;
3011     bool includeAllMoves = (searchMoves[0] == MOVE_NONE);
3012
3013     // Generate all legal moves
3014     MoveStack* last = generate_moves(pos, mlist);
3015
3016     // Add each move to the moves[] array
3017     for (MoveStack* cur = mlist; cur != last; cur++)
3018     {
3019         bool includeMove = includeAllMoves;
3020
3021         for (int k = 0; !includeMove && searchMoves[k] != MOVE_NONE; k++)
3022             includeMove = (searchMoves[k] == cur->move);
3023
3024         if (!includeMove)
3025             continue;
3026
3027         // Find a quick score for the move
3028         init_ss_array(ss);
3029         pos.do_move(cur->move, st);
3030         moves[count].move = cur->move;
3031         moves[count].score = -qsearch(pos, ss, -VALUE_INFINITE, VALUE_INFINITE, Depth(0), 1, 0);
3032         moves[count].pv[0] = cur->move;
3033         moves[count].pv[1] = MOVE_NONE;
3034         pos.undo_move(cur->move);
3035         count++;
3036     }
3037     sort();
3038   }
3039
3040
3041   // RootMoveList simple methods definitions
3042
3043   void RootMoveList::set_move_nodes(int moveNum, int64_t nodes) {
3044
3045     moves[moveNum].nodes = nodes;
3046     moves[moveNum].cumulativeNodes += nodes;
3047   }
3048
3049   void RootMoveList::set_beta_counters(int moveNum, int64_t our, int64_t their) {
3050
3051     moves[moveNum].ourBeta = our;
3052     moves[moveNum].theirBeta = their;
3053   }
3054
3055   void RootMoveList::set_move_pv(int moveNum, const Move pv[]) {
3056
3057     int j;
3058
3059     for (j = 0; pv[j] != MOVE_NONE; j++)
3060         moves[moveNum].pv[j] = pv[j];
3061
3062     moves[moveNum].pv[j] = MOVE_NONE;
3063   }
3064
3065
3066   // RootMoveList::sort() sorts the root move list at the beginning of a new
3067   // iteration.
3068
3069   void RootMoveList::sort() {
3070
3071     sort_multipv(count - 1); // Sort all items
3072   }
3073
3074
3075   // RootMoveList::sort_multipv() sorts the first few moves in the root move
3076   // list by their scores and depths. It is used to order the different PVs
3077   // correctly in MultiPV mode.
3078
3079   void RootMoveList::sort_multipv(int n) {
3080
3081     int i,j;
3082
3083     for (i = 1; i <= n; i++)
3084     {
3085         RootMove rm = moves[i];
3086         for (j = i; j > 0 && moves[j - 1] < rm; j--)
3087             moves[j] = moves[j - 1];
3088
3089         moves[j] = rm;
3090     }
3091   }
3092
3093 } // namspace