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