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