2 Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3 Copyright (C) 2004-2023 The Stockfish developers (see AUTHORS file)
5 Stockfish is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 Stockfish is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
34 // generate main search moves
43 // generate evasion moves
48 // generate probcut moves
53 // generate qsearch moves
61 // Sort moves in descending order up to and including
62 // a given limit. The order of moves smaller than the limit is left unspecified.
63 void partial_insertion_sort(ExtMove* begin, ExtMove* end, int limit) {
65 for (ExtMove *sortedEnd = begin, *p = begin + 1; p < end; ++p)
66 if (p->value >= limit)
70 for (q = sortedEnd; q != begin && *(q - 1) < tmp; --q)
79 // Constructors of the MovePicker class. As arguments, we pass information
80 // to help it return the (presumably) good moves first, to decide which
81 // moves to return (in the quiescence search, for instance, we only want to
82 // search captures, promotions, and some checks) and how important a good
83 // move ordering is at the current node.
85 // MovePicker constructor for the main search
86 MovePicker::MovePicker(const Position& p,
89 const ButterflyHistory* mh,
90 const CapturePieceToHistory* cph,
91 const PieceToHistory** ch,
92 const PawnHistory* ph,
94 const Move* killers) :
98 continuationHistory(ch),
101 refutations{{killers[0], 0}, {killers[1], 0}, {cm, 0}},
105 stage = (pos.checkers() ? EVASION_TT : MAIN_TT) + !(ttm && pos.pseudo_legal(ttm));
108 // Constructor for quiescence search
109 MovePicker::MovePicker(const Position& p,
112 const ButterflyHistory* mh,
113 const CapturePieceToHistory* cph,
114 const PieceToHistory** ch,
115 const PawnHistory* ph) :
119 continuationHistory(ch),
125 stage = (pos.checkers() ? EVASION_TT : QSEARCH_TT) + !(ttm && pos.pseudo_legal(ttm));
128 // Constructor for ProbCut: we generate captures with SEE greater
129 // than or equal to the given threshold.
130 MovePicker::MovePicker(const Position& p, Move ttm, Value th, const CapturePieceToHistory* cph) :
135 assert(!pos.checkers());
138 + !(ttm && pos.capture_stage(ttm) && pos.pseudo_legal(ttm) && pos.see_ge(ttm, threshold));
141 // Assigns a numerical value to each move in a list, used
142 // for sorting. Captures are ordered by Most Valuable Victim (MVV), preferring
143 // captures with a good history. Quiets moves are ordered using the history tables.
144 template<GenType Type>
145 void MovePicker::score() {
147 static_assert(Type == CAPTURES || Type == QUIETS || Type == EVASIONS, "Wrong type");
149 [[maybe_unused]] Bitboard threatenedByPawn, threatenedByMinor, threatenedByRook,
151 if constexpr (Type == QUIETS)
153 Color us = pos.side_to_move();
155 threatenedByPawn = pos.attacks_by<PAWN>(~us);
157 pos.attacks_by<KNIGHT>(~us) | pos.attacks_by<BISHOP>(~us) | threatenedByPawn;
158 threatenedByRook = pos.attacks_by<ROOK>(~us) | threatenedByMinor;
160 // Pieces threatened by pieces of lesser material value
161 threatenedPieces = (pos.pieces(us, QUEEN) & threatenedByRook)
162 | (pos.pieces(us, ROOK) & threatenedByMinor)
163 | (pos.pieces(us, KNIGHT, BISHOP) & threatenedByPawn);
166 for (auto& m : *this)
167 if constexpr (Type == CAPTURES)
169 (7 * int(PieceValue[pos.piece_on(to_sq(m))])
170 + (*captureHistory)[pos.moved_piece(m)][to_sq(m)][type_of(pos.piece_on(to_sq(m)))])
173 else if constexpr (Type == QUIETS)
175 Piece pc = pos.moved_piece(m);
176 PieceType pt = type_of(pos.moved_piece(m));
177 Square from = from_sq(m);
178 Square to = to_sq(m);
181 m.value = 2 * (*mainHistory)[pos.side_to_move()][from_to(m)];
182 m.value += 2 * (*pawnHistory)[pawn_structure(pos)][pc][to];
183 m.value += 2 * (*continuationHistory[0])[pc][to];
184 m.value += (*continuationHistory[1])[pc][to];
185 m.value += (*continuationHistory[2])[pc][to] / 4;
186 m.value += (*continuationHistory[3])[pc][to];
187 m.value += (*continuationHistory[5])[pc][to];
190 m.value += bool(pos.check_squares(pt) & to) * 16384;
192 // bonus for escaping from capture
193 m.value += threatenedPieces & from ? (pt == QUEEN && !(to & threatenedByRook) ? 50000
194 : pt == ROOK && !(to & threatenedByMinor) ? 25000
195 : !(to & threatenedByPawn) ? 15000
199 // malus for putting piece en prise
200 m.value -= !(threatenedPieces & from)
201 ? (pt == QUEEN ? bool(to & threatenedByRook) * 50000
202 + bool(to & threatenedByMinor) * 10000
203 + bool(to & threatenedByPawn) * 20000
204 : pt == ROOK ? bool(to & threatenedByMinor) * 25000
205 + bool(to & threatenedByPawn) * 10000
206 : pt != PAWN ? bool(to & threatenedByPawn) * 15000
211 else // Type == EVASIONS
213 if (pos.capture_stage(m))
214 m.value = PieceValue[pos.piece_on(to_sq(m))] - Value(type_of(pos.moved_piece(m)))
217 m.value = (*mainHistory)[pos.side_to_move()][from_to(m)]
218 + (*continuationHistory[0])[pos.moved_piece(m)][to_sq(m)]
219 + (*pawnHistory)[pawn_structure(pos)][pos.moved_piece(m)][to_sq(m)];
223 // Returns the next move satisfying a predicate function.
224 // It never returns the TT move.
225 template<MovePicker::PickType T, typename Pred>
226 Move MovePicker::select(Pred filter) {
228 while (cur < endMoves)
230 if constexpr (T == Best)
231 std::swap(*cur, *std::max_element(cur, endMoves));
233 if (*cur != ttMove && filter())
241 // Most important method of the MovePicker class. It
242 // returns a new pseudo-legal move every time it is called until there are no more
243 // moves left, picking the move with the highest score from a list of generated moves.
244 Move MovePicker::next_move(bool skipQuiets) {
260 cur = endBadCaptures = moves;
261 endMoves = generate<CAPTURES>(pos, cur);
264 partial_insertion_sort(cur, endMoves, std::numeric_limits<int>::min());
269 if (select<Next>([&]() {
270 // Move losing capture to endBadCaptures to be tried later
271 return pos.see_ge(*cur, Value(-cur->value)) ? true
272 : (*endBadCaptures++ = *cur, false);
276 // Prepare the pointers to loop over the refutations array
277 cur = std::begin(refutations);
278 endMoves = std::end(refutations);
280 // If the countermove is the same as a killer, skip it
281 if (refutations[0].move == refutations[2].move
282 || refutations[1].move == refutations[2].move)
289 if (select<Next>([&]() {
290 return *cur != MOVE_NONE && !pos.capture_stage(*cur) && pos.pseudo_legal(*cur);
299 cur = endBadCaptures;
300 endMoves = generate<QUIETS>(pos, cur);
303 partial_insertion_sort(cur, endMoves, -1960 - 3130 * depth);
310 if (!skipQuiets && select<Next>([&]() {
311 return *cur != refutations[0].move && *cur != refutations[1].move
312 && *cur != refutations[2].move;
316 // Prepare the pointers to loop over the bad captures
318 endMoves = endBadCaptures;
324 return select<Next>([]() { return true; });
328 endMoves = generate<EVASIONS>(pos, cur);
335 return select<Best>([]() { return true; });
338 return select<Next>([&]() { return pos.see_ge(*cur, threshold); });
341 if (select<Next>([]() { return true; }))
344 // If we did not find any move and we do not try checks, we have finished
345 if (depth != DEPTH_QS_CHECKS)
353 endMoves = generate<QUIET_CHECKS>(pos, cur);
359 return select<Next>([]() { return true; });
363 return MOVE_NONE; // Silence warning
366 } // namespace Stockfish