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