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