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