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-2014 Marco Costalba, Joona Kiiski, Tord Romstad
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.
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.
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/>.
37 static const string PieceToChar(" PNBRQK pnbrqk");
41 Score psq[COLOR_NB][PIECE_TYPE_NB][SQUARE_NB];
42 Value PieceValue[PHASE_NB][PIECE_NB] = {
43 { VALUE_ZERO, PawnValueMg, KnightValueMg, BishopValueMg, RookValueMg, QueenValueMg },
44 { VALUE_ZERO, PawnValueEg, KnightValueEg, BishopValueEg, RookValueEg, QueenValueEg } };
48 Key psq[COLOR_NB][PIECE_TYPE_NB][SQUARE_NB];
49 Key enpassant[FILE_NB];
50 Key castling[CASTLING_FLAG_NB];
55 Key Position::exclusion_key() const { return st->key ^ Zobrist::exclusion;}
59 // min_attacker() is a helper function used by see() to locate the least
60 // valuable attacker for the side to move, remove the attacker we just found
61 // from the bitboards and scan for new X-ray attacks behind it.
63 template<int Pt> FORCE_INLINE
64 PieceType min_attacker(const Bitboard* bb, const Square& to, const Bitboard& stmAttackers,
65 Bitboard& occupied, Bitboard& attackers) {
67 Bitboard b = stmAttackers & bb[Pt];
69 return min_attacker<Pt+1>(bb, to, stmAttackers, occupied, attackers);
71 occupied ^= b & ~(b - 1);
73 if (Pt == PAWN || Pt == BISHOP || Pt == QUEEN)
74 attackers |= attacks_bb<BISHOP>(to, occupied) & (bb[BISHOP] | bb[QUEEN]);
76 if (Pt == ROOK || Pt == QUEEN)
77 attackers |= attacks_bb<ROOK>(to, occupied) & (bb[ROOK] | bb[QUEEN]);
79 attackers &= occupied; // After X-ray that may add already processed pieces
83 template<> FORCE_INLINE
84 PieceType min_attacker<KING>(const Bitboard*, const Square&, const Bitboard&, Bitboard&, Bitboard&) {
85 return KING; // No need to update bitboards: it is the last cycle
93 CheckInfo::CheckInfo(const Position& pos) {
95 Color them = ~pos.side_to_move();
96 ksq = pos.king_square(them);
98 pinned = pos.pinned_pieces(pos.side_to_move());
99 dcCandidates = pos.discovered_check_candidates();
101 checkSq[PAWN] = pos.attacks_from<PAWN>(ksq, them);
102 checkSq[KNIGHT] = pos.attacks_from<KNIGHT>(ksq);
103 checkSq[BISHOP] = pos.attacks_from<BISHOP>(ksq);
104 checkSq[ROOK] = pos.attacks_from<ROOK>(ksq);
105 checkSq[QUEEN] = checkSq[BISHOP] | checkSq[ROOK];
110 /// Position::init() initializes at startup the various arrays used to compute
111 /// hash keys and the piece square tables. The latter is a two-step operation:
112 /// Firstly, the white halves of the tables are copied from PSQT[] tables.
113 /// Secondly, the black halves of the tables are initialized by flipping and
114 /// changing the sign of the white scores.
116 void Position::init() {
120 for (Color c = WHITE; c <= BLACK; ++c)
121 for (PieceType pt = PAWN; pt <= KING; ++pt)
122 for (Square s = SQ_A1; s <= SQ_H8; ++s)
123 Zobrist::psq[c][pt][s] = rk.rand<Key>();
125 for (File f = FILE_A; f <= FILE_H; ++f)
126 Zobrist::enpassant[f] = rk.rand<Key>();
128 for (int cf = NO_CASTLING; cf <= ANY_CASTLING; ++cf)
133 Key k = Zobrist::castling[1ULL << pop_lsb(&b)];
134 Zobrist::castling[cf] ^= k ? k : rk.rand<Key>();
138 Zobrist::side = rk.rand<Key>();
139 Zobrist::exclusion = rk.rand<Key>();
141 for (PieceType pt = PAWN; pt <= KING; ++pt)
143 PieceValue[MG][make_piece(BLACK, pt)] = PieceValue[MG][pt];
144 PieceValue[EG][make_piece(BLACK, pt)] = PieceValue[EG][pt];
146 Score v = make_score(PieceValue[MG][pt], PieceValue[EG][pt]);
148 for (Square s = SQ_A1; s <= SQ_H8; ++s)
150 psq[WHITE][pt][ s] = (v + PSQT[pt][s]);
151 psq[BLACK][pt][~s] = -(v + PSQT[pt][s]);
157 /// Position::operator=() creates a copy of 'pos'. We want the new born Position
158 /// object to not depend on any external data so we detach state pointer from
161 Position& Position::operator=(const Position& pos) {
163 std::memcpy(this, &pos, sizeof(Position));
174 /// Position::set() initializes the position object with the given FEN string.
175 /// This function is not very robust - make sure that input FENs are correct,
176 /// this is assumed to be the responsibility of the GUI.
178 void Position::set(const string& fenStr, bool isChess960, Thread* th) {
180 A FEN string defines a particular position using only the ASCII character set.
182 A FEN string contains six fields separated by a space. The fields are:
184 1) Piece placement (from white's perspective). Each rank is described, starting
185 with rank 8 and ending with rank 1. Within each rank, the contents of each
186 square are described from file A through file H. Following the Standard
187 Algebraic Notation (SAN), each piece is identified by a single letter taken
188 from the standard English names. White pieces are designated using upper-case
189 letters ("PNBRQK") whilst Black uses lowercase ("pnbrqk"). Blank squares are
190 noted using digits 1 through 8 (the number of blank squares), and "/"
193 2) Active color. "w" means white moves next, "b" means black.
195 3) Castling availability. If neither side can castle, this is "-". Otherwise,
196 this has one or more letters: "K" (White can castle kingside), "Q" (White
197 can castle queenside), "k" (Black can castle kingside), and/or "q" (Black
198 can castle queenside).
200 4) En passant target square (in algebraic notation). If there's no en passant
201 target square, this is "-". If a pawn has just made a 2-square move, this
202 is the position "behind" the pawn. This is recorded regardless of whether
203 there is a pawn in position to make an en passant capture.
205 5) Halfmove clock. This is the number of halfmoves since the last pawn advance
206 or capture. This is used to determine if a draw can be claimed under the
209 6) Fullmove number. The number of the full move. It starts at 1, and is
210 incremented after Black's move.
213 char col, row, token;
216 std::istringstream ss(fenStr);
221 // 1. Piece placement
222 while ((ss >> token) && !isspace(token))
225 sq += Square(token - '0'); // Advance the given number of files
227 else if (token == '/')
230 else if ((idx = PieceToChar.find(token)) != string::npos)
232 put_piece(sq, color_of(Piece(idx)), type_of(Piece(idx)));
239 sideToMove = (token == 'w' ? WHITE : BLACK);
242 // 3. Castling availability. Compatible with 3 standards: Normal FEN standard,
243 // Shredder-FEN that uses the letters of the columns on which the rooks began
244 // the game instead of KQkq and also X-FEN standard that, in case of Chess960,
245 // if an inner rook is associated with the castling right, the castling tag is
246 // replaced by the file letter of the involved rook, as for the Shredder-FEN.
247 while ((ss >> token) && !isspace(token))
250 Color c = islower(token) ? BLACK : WHITE;
252 token = char(toupper(token));
255 for (rsq = relative_square(c, SQ_H1); type_of(piece_on(rsq)) != ROOK; --rsq) {}
257 else if (token == 'Q')
258 for (rsq = relative_square(c, SQ_A1); type_of(piece_on(rsq)) != ROOK; ++rsq) {}
260 else if (token >= 'A' && token <= 'H')
261 rsq = File(token - 'A') | relative_rank(c, RANK_1);
266 set_castling_flag(c, rsq);
269 // 4. En passant square. Ignore if no pawn capture is possible
270 if ( ((ss >> col) && (col >= 'a' && col <= 'h'))
271 && ((ss >> row) && (row == '3' || row == '6')))
273 st->epSquare = File(col - 'a') | Rank(row - '1');
275 if (!(attackers_to(st->epSquare) & pieces(sideToMove, PAWN)))
276 st->epSquare = SQ_NONE;
279 // 5-6. Halfmove clock and fullmove number
280 ss >> std::skipws >> st->rule50 >> gamePly;
282 // Convert from fullmove starting from 1 to ply starting from 0,
283 // handle also common incorrect FEN with fullmove = 0.
284 gamePly = std::max(2 * (gamePly - 1), 0) + int(sideToMove == BLACK);
286 st->key = compute_key();
287 st->pawnKey = compute_pawn_key();
288 st->materialKey = compute_material_key();
289 st->psq = compute_psq_score();
290 st->npMaterial[WHITE] = compute_non_pawn_material(WHITE);
291 st->npMaterial[BLACK] = compute_non_pawn_material(BLACK);
292 st->checkersBB = attackers_to(king_square(sideToMove)) & pieces(~sideToMove);
293 chess960 = isChess960;
300 /// Position::set_castling_flag() is a helper function used to set castling
301 /// flags given the corresponding color and the rook starting square.
303 void Position::set_castling_flag(Color c, Square rfrom) {
305 Square kfrom = king_square(c);
306 CastlingSide cs = kfrom < rfrom ? KING_SIDE : QUEEN_SIDE;
307 CastlingFlag cf = make_castling_flag(c, cs);
309 st->castlingFlags |= cf;
310 castlingFlagsMask[kfrom] |= cf;
311 castlingFlagsMask[rfrom] |= cf;
312 castlingRookSquare[c][cs] = rfrom;
314 Square kto = relative_square(c, cs == KING_SIDE ? SQ_G1 : SQ_C1);
315 Square rto = relative_square(c, cs == KING_SIDE ? SQ_F1 : SQ_D1);
317 for (Square s = std::min(rfrom, rto); s <= std::max(rfrom, rto); ++s)
318 if (s != kfrom && s != rfrom)
319 castlingPath[c][cs] |= s;
321 for (Square s = std::min(kfrom, kto); s <= std::max(kfrom, kto); ++s)
322 if (s != kfrom && s != rfrom)
323 castlingPath[c][cs] |= s;
327 /// Position::fen() returns a FEN representation of the position. In case of
328 /// Chess960 the Shredder-FEN notation is used. This is mainly a debugging function.
330 const string Position::fen() const {
333 std::ostringstream ss;
335 for (Rank rank = RANK_8; rank >= RANK_1; --rank)
337 for (File file = FILE_A; file <= FILE_H; ++file)
339 for (emptyCnt = 0; file <= FILE_H && empty(file | rank); ++file)
346 ss << PieceToChar[piece_on(file | rank)];
353 ss << (sideToMove == WHITE ? " w " : " b ");
355 if (can_castle(WHITE_OO))
356 ss << (chess960 ? file_to_char(file_of(castling_rook_square(WHITE, KING_SIDE)), false) : 'K');
358 if (can_castle(WHITE_OOO))
359 ss << (chess960 ? file_to_char(file_of(castling_rook_square(WHITE, QUEEN_SIDE)), false) : 'Q');
361 if (can_castle(BLACK_OO))
362 ss << (chess960 ? file_to_char(file_of(castling_rook_square(BLACK, KING_SIDE)), true) : 'k');
364 if (can_castle(BLACK_OOO))
365 ss << (chess960 ? file_to_char(file_of(castling_rook_square(BLACK, QUEEN_SIDE)), true) : 'q');
367 if (!can_castle(WHITE) && !can_castle(BLACK))
370 ss << (ep_square() == SQ_NONE ? " - " : " " + square_to_string(ep_square()) + " ")
371 << st->rule50 << " " << 1 + (gamePly - int(sideToMove == BLACK)) / 2;
377 /// Position::pretty() returns an ASCII representation of the position to be
378 /// printed to the standard output together with the move's san notation.
380 const string Position::pretty(Move move) const {
382 const string dottedLine = "\n+---+---+---+---+---+---+---+---+";
383 const string twoRows = dottedLine + "\n| | . | | . | | . | | . |"
384 + dottedLine + "\n| . | | . | | . | | . | |";
386 string brd = twoRows + twoRows + twoRows + twoRows + dottedLine;
388 for (Bitboard b = pieces(); b; )
390 Square s = pop_lsb(&b);
391 brd[513 - 68 * rank_of(s) + 4 * file_of(s)] = PieceToChar[piece_on(s)];
394 std::ostringstream ss;
397 ss << "\nMove: " << (sideToMove == BLACK ? ".." : "")
398 << move_to_san(*const_cast<Position*>(this), move);
400 ss << brd << "\nFen: " << fen() << "\nKey: " << std::hex << std::uppercase
401 << std::setfill('0') << std::setw(16) << st->key << "\nCheckers: ";
403 for (Bitboard b = checkers(); b; )
404 ss << square_to_string(pop_lsb(&b)) << " ";
406 ss << "\nLegal moves: ";
407 for (MoveList<LEGAL> it(*this); *it; ++it)
408 ss << move_to_san(*const_cast<Position*>(this), *it) << " ";
414 /// Position::check_blockers() returns a bitboard of all the pieces with color
415 /// 'c' that are blocking check on the king with color 'kingColor'. A piece
416 /// blocks a check if removing that piece from the board would result in a
417 /// position where the king is in check. A check blocking piece can be either a
418 /// pinned or a discovered check piece, according if its color 'c' is the same
419 /// or the opposite of 'kingColor'.
421 Bitboard Position::check_blockers(Color c, Color kingColor) const {
423 Bitboard b, pinners, result = 0;
424 Square ksq = king_square(kingColor);
426 // Pinners are sliders that give check when a pinned piece is removed
427 pinners = ( (pieces( ROOK, QUEEN) & PseudoAttacks[ROOK ][ksq])
428 | (pieces(BISHOP, QUEEN) & PseudoAttacks[BISHOP][ksq])) & pieces(~kingColor);
432 b = between_bb(ksq, pop_lsb(&pinners)) & pieces();
434 if (!more_than_one(b))
435 result |= b & pieces(c);
441 /// Position::attackers_to() computes a bitboard of all pieces which attack a
442 /// given square. Slider attacks use the occ bitboard to indicate occupancy.
444 Bitboard Position::attackers_to(Square s, Bitboard occ) const {
446 return (attacks_from<PAWN>(s, BLACK) & pieces(WHITE, PAWN))
447 | (attacks_from<PAWN>(s, WHITE) & pieces(BLACK, PAWN))
448 | (attacks_from<KNIGHT>(s) & pieces(KNIGHT))
449 | (attacks_bb<ROOK>(s, occ) & pieces(ROOK, QUEEN))
450 | (attacks_bb<BISHOP>(s, occ) & pieces(BISHOP, QUEEN))
451 | (attacks_from<KING>(s) & pieces(KING));
455 /// Position::legal() tests whether a pseudo-legal move is legal
457 bool Position::legal(Move m, Bitboard pinned) const {
460 assert(pinned == pinned_pieces(sideToMove));
462 Color us = sideToMove;
463 Square from = from_sq(m);
465 assert(color_of(moved_piece(m)) == us);
466 assert(piece_on(king_square(us)) == make_piece(us, KING));
468 // En passant captures are a tricky special case. Because they are rather
469 // uncommon, we do it simply by testing whether the king is attacked after
471 if (type_of(m) == ENPASSANT)
474 Square to = to_sq(m);
475 Square capsq = to + pawn_push(them);
476 Square ksq = king_square(us);
477 Bitboard b = (pieces() ^ from ^ capsq) | to;
479 assert(to == ep_square());
480 assert(moved_piece(m) == make_piece(us, PAWN));
481 assert(piece_on(capsq) == make_piece(them, PAWN));
482 assert(piece_on(to) == NO_PIECE);
484 return !(attacks_bb< ROOK>(ksq, b) & pieces(them, QUEEN, ROOK))
485 && !(attacks_bb<BISHOP>(ksq, b) & pieces(them, QUEEN, BISHOP));
488 // If the moving piece is a king, check whether the destination
489 // square is attacked by the opponent. Castling moves are checked
490 // for legality during move generation.
491 if (type_of(piece_on(from)) == KING)
492 return type_of(m) == CASTLING || !(attackers_to(to_sq(m)) & pieces(~us));
494 // A non-king move is legal if and only if it is not pinned or it
495 // is moving along the ray towards or away from the king.
498 || aligned(from, to_sq(m), king_square(us));
502 /// Position::pseudo_legal() takes a random move and tests whether the move is
503 /// pseudo legal. It is used to validate moves from TT that can be corrupted
504 /// due to SMP concurrent access or hash position key aliasing.
506 bool Position::pseudo_legal(const Move m) const {
508 Color us = sideToMove;
509 Square from = from_sq(m);
510 Square to = to_sq(m);
511 Piece pc = moved_piece(m);
513 // Use a slower but simpler function for uncommon cases
514 if (type_of(m) != NORMAL)
515 return MoveList<LEGAL>(*this).contains(m);
517 // Is not a promotion, so promotion piece must be empty
518 if (promotion_type(m) - 2 != NO_PIECE_TYPE)
521 // If the 'from' square is not occupied by a piece belonging to the side to
522 // move, the move is obviously not legal.
523 if (pc == NO_PIECE || color_of(pc) != us)
526 // The destination square cannot be occupied by a friendly piece
530 // Handle the special case of a pawn move
531 if (type_of(pc) == PAWN)
533 // Move direction must be compatible with pawn color
534 int direction = to - from;
535 if ((us == WHITE) != (direction > 0))
538 // We have already handled promotion moves, so destination
539 // cannot be on the 8th/1st rank.
540 if (rank_of(to) == RANK_8 || rank_of(to) == RANK_1)
543 // Proceed according to the square delta between the origin and
544 // destination squares.
551 // Capture. The destination square must be occupied by an enemy
552 // piece (en passant captures was handled earlier).
553 if (piece_on(to) == NO_PIECE || color_of(piece_on(to)) != ~us)
556 // From and to files must be one file apart, avoids a7h5
557 if (abs(file_of(from) - file_of(to)) != 1)
563 // Pawn push. The destination square must be empty.
569 // Double white pawn push. The destination square must be on the fourth
570 // rank, and both the destination square and the square between the
571 // source and destination squares must be empty.
572 if ( rank_of(to) != RANK_4
574 || !empty(from + DELTA_N))
579 // Double black pawn push. The destination square must be on the fifth
580 // rank, and both the destination square and the square between the
581 // source and destination squares must be empty.
582 if ( rank_of(to) != RANK_5
584 || !empty(from + DELTA_S))
592 else if (!(attacks_from(pc, from) & to))
595 // Evasions generator already takes care to avoid some kind of illegal moves
596 // and pl_move_is_legal() relies on this. We therefore have to take care that
597 // the same kind of moves are filtered out here.
600 if (type_of(pc) != KING)
602 // Double check? In this case a king move is required
603 if (more_than_one(checkers()))
606 // Our move must be a blocking evasion or a capture of the checking piece
607 if (!((between_bb(lsb(checkers()), king_square(us)) | checkers()) & to))
610 // In case of king moves under check we have to remove king so as to catch
611 // invalid moves like b1a1 when opposite queen is on c1.
612 else if (attackers_to(to, pieces() ^ from) & pieces(~us))
620 /// Position::gives_check() tests whether a pseudo-legal move gives a check
622 bool Position::gives_check(Move m, const CheckInfo& ci) const {
625 assert(ci.dcCandidates == discovered_check_candidates());
626 assert(color_of(moved_piece(m)) == sideToMove);
628 Square from = from_sq(m);
629 Square to = to_sq(m);
630 PieceType pt = type_of(piece_on(from));
632 // Is there a direct check?
633 if (ci.checkSq[pt] & to)
636 // Is there a discovered check?
637 if ( unlikely(ci.dcCandidates)
638 && (ci.dcCandidates & from)
639 && !aligned(from, to, ci.ksq))
642 // Can we skip the ugly special cases?
643 if (type_of(m) == NORMAL)
649 return attacks_bb(Piece(promotion_type(m)), to, pieces() ^ from) & ci.ksq;
651 // En passant capture with check? We have already handled the case
652 // of direct checks and ordinary discovered check, so the only case we
653 // need to handle is the unusual case of a discovered check through
654 // the captured pawn.
657 Square capsq = file_of(to) | rank_of(from);
658 Bitboard b = (pieces() ^ from ^ capsq) | to;
660 return (attacks_bb< ROOK>(ci.ksq, b) & pieces(sideToMove, QUEEN, ROOK))
661 | (attacks_bb<BISHOP>(ci.ksq, b) & pieces(sideToMove, QUEEN, BISHOP));
666 Square rfrom = to; // Castling is encoded as 'King captures the rook'
667 Square kto = relative_square(sideToMove, rfrom > kfrom ? SQ_G1 : SQ_C1);
668 Square rto = relative_square(sideToMove, rfrom > kfrom ? SQ_F1 : SQ_D1);
670 return (PseudoAttacks[ROOK][rto] & ci.ksq)
671 && (attacks_bb<ROOK>(rto, (pieces() ^ kfrom ^ rfrom) | rto | kto) & ci.ksq);
680 /// Position::do_move() makes a move, and saves all information necessary
681 /// to a StateInfo object. The move is assumed to be legal. Pseudo-legal
682 /// moves should be filtered out before this function is called.
684 void Position::do_move(Move m, StateInfo& newSt) {
687 do_move(m, newSt, ci, gives_check(m, ci));
690 void Position::do_move(Move m, StateInfo& newSt, const CheckInfo& ci, bool moveIsCheck) {
693 assert(&newSt != st);
698 // Copy some fields of the old state to our new StateInfo object except the
699 // ones which are going to be recalculated from scratch anyway and then switch
700 // our state pointer to point to the new (ready to be updated) state.
701 std::memcpy(&newSt, st, StateCopySize64 * sizeof(uint64_t));
706 // Update side to move
709 // Increment ply counters. In particular, rule50 will be reset to zero later on
710 // in case of a capture or a pawn move.
715 Color us = sideToMove;
717 Square from = from_sq(m);
718 Square to = to_sq(m);
719 Piece pc = piece_on(from);
720 PieceType pt = type_of(pc);
721 PieceType captured = type_of(m) == ENPASSANT ? PAWN : type_of(piece_on(to));
723 assert(color_of(pc) == us);
724 assert(piece_on(to) == NO_PIECE || color_of(piece_on(to)) == them || type_of(m) == CASTLING);
725 assert(captured != KING);
727 if (type_of(m) == CASTLING)
729 assert(pc == make_piece(us, KING));
731 bool kingSide = to > from;
732 Square rfrom = to; // Castling is encoded as "king captures friendly rook"
733 Square rto = relative_square(us, kingSide ? SQ_F1 : SQ_D1);
734 to = relative_square(us, kingSide ? SQ_G1 : SQ_C1);
735 captured = NO_PIECE_TYPE;
737 do_castling(from, to, rfrom, rto);
739 st->psq += psq[us][ROOK][rto] - psq[us][ROOK][rfrom];
740 k ^= Zobrist::psq[us][ROOK][rfrom] ^ Zobrist::psq[us][ROOK][rto];
747 // If the captured piece is a pawn, update pawn hash key, otherwise
748 // update non-pawn material.
749 if (captured == PAWN)
751 if (type_of(m) == ENPASSANT)
753 capsq += pawn_push(them);
756 assert(to == st->epSquare);
757 assert(relative_rank(us, to) == RANK_6);
758 assert(piece_on(to) == NO_PIECE);
759 assert(piece_on(capsq) == make_piece(them, PAWN));
761 board[capsq] = NO_PIECE;
764 st->pawnKey ^= Zobrist::psq[them][PAWN][capsq];
767 st->npMaterial[them] -= PieceValue[MG][captured];
769 // Update board and piece lists
770 remove_piece(capsq, them, captured);
772 // Update material hash key and prefetch access to materialTable
773 k ^= Zobrist::psq[them][captured][capsq];
774 st->materialKey ^= Zobrist::psq[them][captured][pieceCount[them][captured]];
775 prefetch((char*)thisThread->materialTable[st->materialKey]);
777 // Update incremental scores
778 st->psq -= psq[them][captured][capsq];
780 // Reset rule 50 counter
785 k ^= Zobrist::psq[us][pt][from] ^ Zobrist::psq[us][pt][to];
787 // Reset en passant square
788 if (st->epSquare != SQ_NONE)
790 k ^= Zobrist::enpassant[file_of(st->epSquare)];
791 st->epSquare = SQ_NONE;
794 // Update castling flags if needed
795 if (st->castlingFlags && (castlingFlagsMask[from] | castlingFlagsMask[to]))
797 int cf = castlingFlagsMask[from] | castlingFlagsMask[to];
798 k ^= Zobrist::castling[st->castlingFlags & cf];
799 st->castlingFlags &= ~cf;
802 // Prefetch TT access as soon as we know the new hash key
803 prefetch((char*)TT.first_entry(k));
805 // Move the piece. The tricky Chess960 castling is handled earlier
806 if (type_of(m) != CASTLING)
807 move_piece(from, to, us, pt);
809 // If the moving piece is a pawn do some special extra work
812 // Set en-passant square if the moved pawn can be captured
813 if ( (int(to) ^ int(from)) == 16
814 && (attacks_from<PAWN>(from + pawn_push(us), us) & pieces(them, PAWN)))
816 st->epSquare = Square((from + to) / 2);
817 k ^= Zobrist::enpassant[file_of(st->epSquare)];
820 if (type_of(m) == PROMOTION)
822 PieceType promotion = promotion_type(m);
824 assert(relative_rank(us, to) == RANK_8);
825 assert(promotion >= KNIGHT && promotion <= QUEEN);
827 remove_piece(to, us, PAWN);
828 put_piece(to, us, promotion);
831 k ^= Zobrist::psq[us][PAWN][to] ^ Zobrist::psq[us][promotion][to];
832 st->pawnKey ^= Zobrist::psq[us][PAWN][to];
833 st->materialKey ^= Zobrist::psq[us][promotion][pieceCount[us][promotion]-1]
834 ^ Zobrist::psq[us][PAWN][pieceCount[us][PAWN]];
836 // Update incremental score
837 st->psq += psq[us][promotion][to] - psq[us][PAWN][to];
840 st->npMaterial[us] += PieceValue[MG][promotion];
843 // Update pawn hash key and prefetch access to pawnsTable
844 st->pawnKey ^= Zobrist::psq[us][PAWN][from] ^ Zobrist::psq[us][PAWN][to];
845 prefetch((char*)thisThread->pawnsTable[st->pawnKey]);
847 // Reset rule 50 draw counter
851 // Update incremental scores
852 st->psq += psq[us][pt][to] - psq[us][pt][from];
855 st->capturedType = captured;
857 // Update the key with the final value
860 // Update checkers bitboard: piece must be already moved
865 if (type_of(m) != NORMAL)
866 st->checkersBB = attackers_to(king_square(them)) & pieces(us);
870 if (ci.checkSq[pt] & to)
871 st->checkersBB |= to;
874 if (ci.dcCandidates && (ci.dcCandidates & from))
877 st->checkersBB |= attacks_from<ROOK>(king_square(them)) & pieces(us, QUEEN, ROOK);
880 st->checkersBB |= attacks_from<BISHOP>(king_square(them)) & pieces(us, QUEEN, BISHOP);
885 sideToMove = ~sideToMove;
891 /// Position::undo_move() unmakes a move. When it returns, the position should
892 /// be restored to exactly the same state as before the move was made.
894 void Position::undo_move(Move m) {
898 sideToMove = ~sideToMove;
900 Color us = sideToMove;
902 Square from = from_sq(m);
903 Square to = to_sq(m);
904 PieceType pt = type_of(piece_on(to));
905 PieceType captured = st->capturedType;
907 assert(empty(from) || type_of(m) == CASTLING);
908 assert(captured != KING);
910 if (type_of(m) == PROMOTION)
912 PieceType promotion = promotion_type(m);
914 assert(promotion == pt);
915 assert(relative_rank(us, to) == RANK_8);
916 assert(promotion >= KNIGHT && promotion <= QUEEN);
918 remove_piece(to, us, promotion);
919 put_piece(to, us, PAWN);
923 if (type_of(m) == CASTLING)
925 bool kingSide = to > from;
926 Square rfrom = to; // Castling is encoded as "king captures friendly rook"
927 Square rto = relative_square(us, kingSide ? SQ_F1 : SQ_D1);
928 to = relative_square(us, kingSide ? SQ_G1 : SQ_C1);
929 captured = NO_PIECE_TYPE;
931 do_castling(to, from, rto, rfrom);
934 move_piece(to, from, us, pt); // Put the piece back at the source square
940 if (type_of(m) == ENPASSANT)
942 capsq -= pawn_push(us);
945 assert(to == st->previous->epSquare);
946 assert(relative_rank(us, to) == RANK_6);
947 assert(piece_on(capsq) == NO_PIECE);
950 put_piece(capsq, them, captured); // Restore the captured piece
953 // Finally point our state pointer back to the previous state
961 /// Position::do_castling() is a helper used to do/undo a castling move. This
962 /// is a bit tricky, especially in Chess960.
964 void Position::do_castling(Square kfrom, Square kto, Square rfrom, Square rto) {
966 // Remove both pieces first since squares could overlap in Chess960
967 remove_piece(kfrom, sideToMove, KING);
968 remove_piece(rfrom, sideToMove, ROOK);
969 board[kfrom] = board[rfrom] = NO_PIECE; // Since remove_piece doesn't do it for us
970 put_piece(kto, sideToMove, KING);
971 put_piece(rto, sideToMove, ROOK);
975 /// Position::do(undo)_null_move() is used to do(undo) a "null move": It flips
976 /// the side to move without executing any move on the board.
978 void Position::do_null_move(StateInfo& newSt) {
982 std::memcpy(&newSt, st, sizeof(StateInfo)); // Fully copy here
987 if (st->epSquare != SQ_NONE)
989 st->key ^= Zobrist::enpassant[file_of(st->epSquare)];
990 st->epSquare = SQ_NONE;
993 st->key ^= Zobrist::side;
994 prefetch((char*)TT.first_entry(st->key));
997 st->pliesFromNull = 0;
999 sideToMove = ~sideToMove;
1001 assert(pos_is_ok());
1004 void Position::undo_null_move() {
1006 assert(!checkers());
1009 sideToMove = ~sideToMove;
1013 /// Position::see() is a static exchange evaluator: It tries to estimate the
1014 /// material gain or loss resulting from a move.
1016 Value Position::see_sign(Move m) const {
1020 // Early return if SEE cannot be negative because captured piece value
1021 // is not less then capturing one. Note that king moves always return
1022 // here because king midgame value is set to 0.
1023 if (PieceValue[MG][moved_piece(m)] <= PieceValue[MG][piece_on(to_sq(m))])
1024 return VALUE_KNOWN_WIN;
1029 Value Position::see(Move m) const {
1032 Bitboard occupied, attackers, stmAttackers;
1042 swapList[0] = PieceValue[MG][piece_on(to)];
1043 stm = color_of(piece_on(from));
1044 occupied = pieces() ^ from;
1046 // Castling moves are implemented as king capturing the rook so cannot be
1047 // handled correctly. Simply return 0 that is always the correct value
1048 // unless in the rare case the rook ends up under attack.
1049 if (type_of(m) == CASTLING)
1052 if (type_of(m) == ENPASSANT)
1054 occupied ^= to - pawn_push(stm); // Remove the captured pawn
1055 swapList[0] = PieceValue[MG][PAWN];
1058 // Find all attackers to the destination square, with the moving piece
1059 // removed, but possibly an X-ray attacker added behind it.
1060 attackers = attackers_to(to, occupied) & occupied;
1062 // If the opponent has no attackers we are finished
1064 stmAttackers = attackers & pieces(stm);
1068 // The destination square is defended, which makes things rather more
1069 // difficult to compute. We proceed by building up a "swap list" containing
1070 // the material gain or loss at each stop in a sequence of captures to the
1071 // destination square, where the sides alternately capture, and always
1072 // capture with the least valuable piece. After each capture, we look for
1073 // new X-ray attacks from behind the capturing piece.
1074 captured = type_of(piece_on(from));
1077 assert(slIndex < 32);
1079 // Add the new entry to the swap list
1080 swapList[slIndex] = -swapList[slIndex - 1] + PieceValue[MG][captured];
1082 // Locate and remove the next least valuable attacker
1083 captured = min_attacker<PAWN>(byTypeBB, to, stmAttackers, occupied, attackers);
1085 // Stop before processing a king capture
1086 if (captured == KING)
1088 if (stmAttackers == attackers)
1095 stmAttackers = attackers & pieces(stm);
1098 } while (stmAttackers);
1100 // Having built the swap list, we negamax through it to find the best
1101 // achievable score from the point of view of the side to move.
1103 swapList[slIndex - 1] = std::min(-swapList[slIndex], swapList[slIndex - 1]);
1109 /// Position::clear() erases the position object to a pristine state, with an
1110 /// empty board, white to move, and no castling rights.
1112 void Position::clear() {
1114 std::memset(this, 0, sizeof(Position));
1115 startState.epSquare = SQ_NONE;
1118 for (int i = 0; i < PIECE_TYPE_NB; ++i)
1119 for (int j = 0; j < 16; ++j)
1120 pieceList[WHITE][i][j] = pieceList[BLACK][i][j] = SQ_NONE;
1124 /// Position::compute_key() computes the hash key of the position. The hash
1125 /// key is usually updated incrementally as moves are made and unmade. The
1126 /// compute_key() function is only used when a new position is set up, and
1127 /// to verify the correctness of the hash key when running in debug mode.
1129 Key Position::compute_key() const {
1131 Key k = Zobrist::castling[st->castlingFlags];
1133 for (Bitboard b = pieces(); b; )
1135 Square s = pop_lsb(&b);
1136 k ^= Zobrist::psq[color_of(piece_on(s))][type_of(piece_on(s))][s];
1139 if (ep_square() != SQ_NONE)
1140 k ^= Zobrist::enpassant[file_of(ep_square())];
1142 if (sideToMove == BLACK)
1149 /// Position::compute_pawn_key() computes the hash key of the position. The
1150 /// hash key is usually updated incrementally as moves are made and unmade.
1151 /// The compute_pawn_key() function is only used when a new position is set
1152 /// up, and to verify the correctness of the pawn hash key when running in
1155 Key Position::compute_pawn_key() const {
1159 for (Bitboard b = pieces(PAWN); b; )
1161 Square s = pop_lsb(&b);
1162 k ^= Zobrist::psq[color_of(piece_on(s))][PAWN][s];
1169 /// Position::compute_material_key() computes the hash key of the position.
1170 /// The hash key is usually updated incrementally as moves are made and unmade.
1171 /// The compute_material_key() function is only used when a new position is set
1172 /// up, and to verify the correctness of the material hash key when running in
1175 Key Position::compute_material_key() const {
1179 for (Color c = WHITE; c <= BLACK; ++c)
1180 for (PieceType pt = PAWN; pt <= KING; ++pt)
1181 for (int cnt = 0; cnt < pieceCount[c][pt]; ++cnt)
1182 k ^= Zobrist::psq[c][pt][cnt];
1188 /// Position::compute_psq_score() computes the incremental scores for the middlegame
1189 /// and the endgame. These functions are used to initialize the incremental scores
1190 /// when a new position is set up, and to verify that the scores are correctly
1191 /// updated by do_move and undo_move when the program is running in debug mode.
1193 Score Position::compute_psq_score() const {
1195 Score score = SCORE_ZERO;
1197 for (Bitboard b = pieces(); b; )
1199 Square s = pop_lsb(&b);
1200 Piece pc = piece_on(s);
1201 score += psq[color_of(pc)][type_of(pc)][s];
1208 /// Position::compute_non_pawn_material() computes the total non-pawn middlegame
1209 /// material value for the given side. Material values are updated incrementally
1210 /// during the search. This function is only used when initializing a new Position
1213 Value Position::compute_non_pawn_material(Color c) const {
1215 Value value = VALUE_ZERO;
1217 for (PieceType pt = KNIGHT; pt <= QUEEN; ++pt)
1218 value += pieceCount[c][pt] * PieceValue[MG][pt];
1224 /// Position::is_draw() tests whether the position is drawn by material, 50 moves
1225 /// rule or repetition. It does not detect stalemates.
1227 bool Position::is_draw() const {
1230 && (non_pawn_material(WHITE) + non_pawn_material(BLACK) <= BishopValueMg))
1233 if (st->rule50 > 99 && (!checkers() || MoveList<LEGAL>(*this).size()))
1236 StateInfo* stp = st;
1237 for (int i = 2, e = std::min(st->rule50, st->pliesFromNull); i <= e; i += 2)
1239 stp = stp->previous->previous;
1241 if (stp->key == st->key)
1242 return true; // Draw at first repetition
1249 /// Position::flip() flips position with the white and black sides reversed. This
1250 /// is only useful for debugging e.g. for finding evaluation symmetry bugs.
1252 static char toggle_case(char c) {
1253 return char(islower(c) ? toupper(c) : tolower(c));
1256 void Position::flip() {
1259 std::stringstream ss(fen());
1261 for (Rank rank = RANK_8; rank >= RANK_1; --rank) // Piece placement
1263 std::getline(ss, token, rank > RANK_1 ? '/' : ' ');
1264 f.insert(0, token + (f.empty() ? " " : "/"));
1267 ss >> token; // Active color
1268 f += (token == "w" ? "B " : "W "); // Will be lowercased later
1270 ss >> token; // Castling availability
1273 std::transform(f.begin(), f.end(), f.begin(), toggle_case);
1275 ss >> token; // En passant square
1276 f += (token == "-" ? token : token.replace(1, 1, token[1] == '3' ? "6" : "3"));
1278 std::getline(ss, token); // Half and full moves
1281 set(f, is_chess960(), this_thread());
1283 assert(pos_is_ok());
1287 /// Position::pos_is_ok() performs some consistency checks for the position object.
1288 /// This is meant to be helpful when debugging.
1290 bool Position::pos_is_ok(int* failedStep) const {
1292 int dummy, *step = failedStep ? failedStep : &dummy;
1294 // What features of the position should be verified?
1295 const bool all = false;
1297 const bool debugBitboards = all || false;
1298 const bool debugKingCount = all || false;
1299 const bool debugKingCapture = all || false;
1300 const bool debugCheckerCount = all || false;
1301 const bool debugKey = all || false;
1302 const bool debugMaterialKey = all || false;
1303 const bool debugPawnKey = all || false;
1304 const bool debugIncrementalEval = all || false;
1305 const bool debugNonPawnMaterial = all || false;
1306 const bool debugPieceCounts = all || false;
1307 const bool debugPieceList = all || false;
1308 const bool debugCastlingSquares = all || false;
1312 if (sideToMove != WHITE && sideToMove != BLACK)
1315 if ((*step)++, piece_on(king_square(WHITE)) != W_KING)
1318 if ((*step)++, piece_on(king_square(BLACK)) != B_KING)
1321 if ((*step)++, debugKingCount)
1323 int kingCount[COLOR_NB] = {};
1325 for (Square s = SQ_A1; s <= SQ_H8; ++s)
1326 if (type_of(piece_on(s)) == KING)
1327 ++kingCount[color_of(piece_on(s))];
1329 if (kingCount[0] != 1 || kingCount[1] != 1)
1333 if ((*step)++, debugKingCapture)
1334 if (attackers_to(king_square(~sideToMove)) & pieces(sideToMove))
1337 if ((*step)++, debugCheckerCount && popcount<Full>(st->checkersBB) > 2)
1340 if ((*step)++, debugBitboards)
1342 // The intersection of the white and black pieces must be empty
1343 if (pieces(WHITE) & pieces(BLACK))
1346 // The union of the white and black pieces must be equal to all
1348 if ((pieces(WHITE) | pieces(BLACK)) != pieces())
1351 // Separate piece type bitboards must have empty intersections
1352 for (PieceType p1 = PAWN; p1 <= KING; ++p1)
1353 for (PieceType p2 = PAWN; p2 <= KING; ++p2)
1354 if (p1 != p2 && (pieces(p1) & pieces(p2)))
1358 if ((*step)++, ep_square() != SQ_NONE && relative_rank(sideToMove, ep_square()) != RANK_6)
1361 if ((*step)++, debugKey && st->key != compute_key())
1364 if ((*step)++, debugPawnKey && st->pawnKey != compute_pawn_key())
1367 if ((*step)++, debugMaterialKey && st->materialKey != compute_material_key())
1370 if ((*step)++, debugIncrementalEval && st->psq != compute_psq_score())
1373 if ((*step)++, debugNonPawnMaterial)
1374 if ( st->npMaterial[WHITE] != compute_non_pawn_material(WHITE)
1375 || st->npMaterial[BLACK] != compute_non_pawn_material(BLACK))
1378 if ((*step)++, debugPieceCounts)
1379 for (Color c = WHITE; c <= BLACK; ++c)
1380 for (PieceType pt = PAWN; pt <= KING; ++pt)
1381 if (pieceCount[c][pt] != popcount<Full>(pieces(c, pt)))
1384 if ((*step)++, debugPieceList)
1385 for (Color c = WHITE; c <= BLACK; ++c)
1386 for (PieceType pt = PAWN; pt <= KING; ++pt)
1387 for (int i = 0; i < pieceCount[c][pt]; ++i)
1388 if ( board[pieceList[c][pt][i]] != make_piece(c, pt)
1389 || index[pieceList[c][pt][i]] != i)
1392 if ((*step)++, debugCastlingSquares)
1393 for (Color c = WHITE; c <= BLACK; ++c)
1394 for (CastlingSide s = KING_SIDE; s <= QUEEN_SIDE; s = CastlingSide(s + 1))
1396 CastlingFlag cf = make_castling_flag(c, s);
1398 if (!can_castle(cf))
1401 if ( (castlingFlagsMask[king_square(c)] & cf) != cf
1402 || piece_on(castlingRookSquare[c][s]) != make_piece(c, ROOK)
1403 || castlingFlagsMask[castlingRookSquare[c][s]] != cf)