]> git.sesse.net Git - stockfish/blob - src/search.h
Improve multi-threaded mate finding
[stockfish] / src / search.h
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-2015 Marco Costalba, Joona Kiiski, Tord Romstad
5   Copyright (C) 2015-2017 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
6
7   Stockfish is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   Stockfish is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifndef SEARCH_H_INCLUDED
22 #define SEARCH_H_INCLUDED
23
24 #include <vector>
25
26 #include "misc.h"
27 #include "movepick.h"
28 #include "types.h"
29
30 class Position;
31
32 namespace Search {
33
34 /// Stack struct keeps track of the information we need to remember from nodes
35 /// shallower and deeper in the tree during the search. Each search thread has
36 /// its own array of Stack objects, indexed by the current ply.
37
38 struct Stack {
39   Move* pv;
40   PieceToHistory* contHistory;
41   int ply;
42   Move currentMove;
43   Move excludedMove;
44   Move killers[2];
45   Value staticEval;
46   int statScore;
47   int moveCount;
48 };
49
50
51 /// RootMove struct is used for moves at the root of the tree. For each root move
52 /// we store a score and a PV (really a refutation in the case of moves which
53 /// fail low). Score is normally set at -VALUE_INFINITE for all non-pv moves.
54
55 struct RootMove {
56
57   explicit RootMove(Move m) : pv(1, m) {}
58   bool extract_ponder_from_tt(Position& pos);
59   bool operator==(const Move& m) const { return pv[0] == m; }
60   bool operator<(const RootMove& m) const { // Sort in descending order
61     return m.score != score ? m.score < score
62                             : m.previousScore < previousScore;
63   }
64
65   Value score = -VALUE_INFINITE;
66   Value previousScore = -VALUE_INFINITE;
67   int selDepth = 0;
68   std::vector<Move> pv;
69 };
70
71 typedef std::vector<RootMove> RootMoves;
72
73
74 /// LimitsType struct stores information sent by GUI about available time to
75 /// search the current move, maximum depth/time, or if we are in analysis mode.
76
77 struct LimitsType {
78
79   LimitsType() { // Init explicitly due to broken value-initialization of non POD in MSVC
80     nodes = time[WHITE] = time[BLACK] = inc[WHITE] = inc[BLACK] =
81     npmsec = movestogo = depth = movetime = mate = perft = infinite = 0;
82   }
83
84   bool use_time_management() const {
85     return !(mate | movetime | depth | nodes | perft | infinite);
86   }
87
88   std::vector<Move> searchmoves;
89   int time[COLOR_NB], inc[COLOR_NB], npmsec, movestogo, depth,
90       movetime, mate, perft, infinite;
91   int64_t nodes;
92   TimePoint startTime;
93 };
94
95 extern LimitsType Limits;
96
97 void init();
98 void clear();
99
100 } // namespace Search
101
102 #endif // #ifndef SEARCH_H_INCLUDED