]> git.sesse.net Git - stockfish/blob - src/position.cpp
f558d73c67992138f1d96ec12521f8ed26027539
[stockfish] / src / position.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 Marco Costalba
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 <cstring>
27 #include <fstream>
28 #include <iostream>
29
30 #include "mersenne.h"
31 #include "movegen.h"
32 #include "movepick.h"
33 #include "position.h"
34 #include "psqtab.h"
35 #include "san.h"
36 #include "ucioption.h"
37
38
39 ////
40 //// Variables
41 ////
42
43 extern SearchStack EmptySearchStack;
44
45 int Position::castleRightsMask[64];
46
47 Key Position::zobrist[2][8][64];
48 Key Position::zobEp[64];
49 Key Position::zobCastle[16];
50 Key Position::zobMaterial[2][8][16];
51 Key Position::zobSideToMove;
52
53 Value Position::MgPieceSquareTable[16][64];
54 Value Position::EgPieceSquareTable[16][64];
55
56 static bool RequestPending = false;
57
58 ////
59 //// Functions
60 ////
61
62 /// Constructors
63
64 Position::Position(const Position& pos) {
65   copy(pos);
66 }
67
68 Position::Position(const std::string& fen) {
69   from_fen(fen);
70 }
71
72
73 /// Position::from_fen() initializes the position object with the given FEN
74 /// string. This function is not very robust - make sure that input FENs are
75 /// correct (this is assumed to be the responsibility of the GUI).
76
77 void Position::from_fen(const std::string& fen) {
78
79   static const std::string pieceLetters = "KQRBNPkqrbnp";
80   static const Piece pieces[] = { WK, WQ, WR, WB, WN, WP, BK, BQ, BR, BB, BN, BP };
81
82   clear();
83
84   // Board
85   Rank rank = RANK_8;
86   File file = FILE_A;
87   size_t i = 0;
88   for ( ; fen[i] != ' '; i++)
89   {
90       if (isdigit(fen[i]))
91       {
92           // Skip the given number of files
93           file += (fen[i] - '1' + 1);
94           continue;
95       }
96       else if (fen[i] == '/')
97       {
98           file = FILE_A;
99           rank--;
100           continue;
101       }
102       size_t idx = pieceLetters.find(fen[i]);
103       if (idx == std::string::npos)
104       {
105            std::cout << "Error in FEN at character " << i << std::endl;
106            return;
107       }
108       Square square = make_square(file, rank);
109       put_piece(pieces[idx], square);
110       file++;
111   }
112
113   // Side to move
114   i++;
115   if (fen[i] != 'w' && fen[i] != 'b')
116   {
117       std::cout << "Error in FEN at character " << i << std::endl;
118       return;
119   }
120   sideToMove = (fen[i] == 'w' ? WHITE : BLACK);
121
122   // Castling rights
123   i++;
124   if (fen[i] != ' ')
125   {
126       std::cout << "Error in FEN at character " << i << std::endl;
127       return;
128   }
129
130   i++;
131   while(strchr("KQkqabcdefghABCDEFGH-", fen[i])) {
132     if (fen[i] == '-')
133     {
134       i++;
135       break;
136     }
137     else if(fen[i] == 'K') allow_oo(WHITE);
138     else if(fen[i] == 'Q') allow_ooo(WHITE);
139     else if(fen[i] == 'k') allow_oo(BLACK);
140     else if(fen[i] == 'q') allow_ooo(BLACK);
141     else if(fen[i] >= 'A' && fen[i] <= 'H') {
142       File rookFile, kingFile = FILE_NONE;
143       for(Square square = SQ_B1; square <= SQ_G1; square++)
144         if(piece_on(square) == WK)
145           kingFile = square_file(square);
146       if(kingFile == FILE_NONE) {
147         std::cout << "Error in FEN at character " << i << std::endl;
148         return;
149       }
150       initialKFile = kingFile;
151       rookFile = File(fen[i] - 'A') + FILE_A;
152       if(rookFile < initialKFile) {
153         allow_ooo(WHITE);
154         initialQRFile = rookFile;
155       }
156       else {
157         allow_oo(WHITE);
158         initialKRFile = rookFile;
159       }
160     }
161     else if(fen[i] >= 'a' && fen[i] <= 'h') {
162       File rookFile, kingFile = FILE_NONE;
163       for(Square square = SQ_B8; square <= SQ_G8; square++)
164         if(piece_on(square) == BK)
165           kingFile = square_file(square);
166       if(kingFile == FILE_NONE) {
167         std::cout << "Error in FEN at character " << i << std::endl;
168         return;
169       }
170       initialKFile = kingFile;
171       rookFile = File(fen[i] - 'a') + FILE_A;
172       if(rookFile < initialKFile) {
173         allow_ooo(BLACK);
174         initialQRFile = rookFile;
175       }
176       else {
177         allow_oo(BLACK);
178         initialKRFile = rookFile;
179       }
180     }
181     else {
182       std::cout << "Error in FEN at character " << i << std::endl;
183       return;
184     }
185     i++;
186   }
187
188   // Skip blanks
189   while (fen[i] == ' ')
190       i++;
191
192   // En passant square
193   if (    i < fen.length() - 2
194       && (fen[i] >= 'a' && fen[i] <= 'h')
195       && (fen[i+1] == '3' || fen[i+1] == '6'))
196       st->epSquare = square_from_string(fen.substr(i, 2));
197
198   // Various initialisation
199   for (Square sq = SQ_A1; sq <= SQ_H8; sq++)
200       castleRightsMask[sq] = ALL_CASTLES;
201
202   castleRightsMask[make_square(initialKFile,  RANK_1)] ^= (WHITE_OO|WHITE_OOO);
203   castleRightsMask[make_square(initialKFile,  RANK_8)] ^= (BLACK_OO|BLACK_OOO);
204   castleRightsMask[make_square(initialKRFile, RANK_1)] ^= WHITE_OO;
205   castleRightsMask[make_square(initialKRFile, RANK_8)] ^= BLACK_OO;
206   castleRightsMask[make_square(initialQRFile, RANK_1)] ^= WHITE_OOO;
207   castleRightsMask[make_square(initialQRFile, RANK_8)] ^= BLACK_OOO;
208
209   find_checkers();
210
211   st->key = compute_key();
212   st->pawnKey = compute_pawn_key();
213   st->materialKey = compute_material_key();
214   st->mgValue = compute_value<MidGame>();
215   st->egValue = compute_value<EndGame>();
216   npMaterial[WHITE] = compute_non_pawn_material(WHITE);
217   npMaterial[BLACK] = compute_non_pawn_material(BLACK);
218 }
219
220
221 /// Position::to_fen() converts the position object to a FEN string. This is
222 /// probably only useful for debugging.
223
224 const std::string Position::to_fen() const {
225
226   static const std::string pieceLetters = " PNBRQK  pnbrqk";
227   std::string fen;
228   int skip;
229
230   for (Rank rank = RANK_8; rank >= RANK_1; rank--)
231   {
232       skip = 0;
233       for (File file = FILE_A; file <= FILE_H; file++)
234       {
235           Square sq = make_square(file, rank);
236           if (!square_is_occupied(sq))
237           {   skip++;
238               continue;
239           }
240           if (skip > 0)
241           {
242               fen += (char)skip + '0';
243               skip = 0;
244           }
245           fen += pieceLetters[piece_on(sq)];
246       }
247       if (skip > 0)
248           fen += (char)skip + '0';
249
250       fen += (rank > RANK_1 ? '/' : ' ');
251   }
252   fen += (sideToMove == WHITE ? "w " : "b ");
253   if (st->castleRights != NO_CASTLES)
254   {
255     if (can_castle_kingside(WHITE))  fen += 'K';
256     if (can_castle_queenside(WHITE)) fen += 'Q';
257     if (can_castle_kingside(BLACK))  fen += 'k';
258     if (can_castle_queenside(BLACK)) fen += 'q';
259   } else
260       fen += '-';
261
262   fen += ' ';
263   if (ep_square() != SQ_NONE)
264       fen += square_to_string(ep_square());
265   else
266       fen += '-';
267
268   return fen;
269 }
270
271
272 /// Position::print() prints an ASCII representation of the position to
273 /// the standard output. If a move is given then also the san is print.
274
275 void Position::print(Move m) const {
276
277   static const std::string pieceLetters = " PNBRQK  PNBRQK .";
278
279   // Check for reentrancy, as example when called from inside
280   // MovePicker that is used also here in move_to_san()
281   if (RequestPending)
282       return;
283
284   RequestPending = true;
285
286   std::cout << std::endl;
287   if (m != MOVE_NONE)
288   {
289       std::string col = (color_of_piece_on(move_from(m)) == BLACK ? ".." : "");
290       std::cout << "Move is: " << col << move_to_san(*this, m) << std::endl;
291   }
292   for (Rank rank = RANK_8; rank >= RANK_1; rank--)
293   {
294       std::cout << "+---+---+---+---+---+---+---+---+" << std::endl;
295       for (File file = FILE_A; file <= FILE_H; file++)
296       {
297           Square sq = make_square(file, rank);
298           Piece piece = piece_on(sq);
299           if (piece == EMPTY && square_color(sq) == WHITE)
300               piece = NO_PIECE;
301
302           char col = (color_of_piece_on(sq) == BLACK ? '=' : ' ');
303           std::cout << '|' << col << pieceLetters[piece] << col;
304       }
305       std::cout << '|' << std::endl;
306   }
307   std::cout << "+---+---+---+---+---+---+---+---+" << std::endl
308             << "Fen is: " << to_fen() << std::endl
309             << "Key is: " << st->key << std::endl;
310
311   RequestPending = false;
312 }
313
314
315 /// Position::copy() creates a copy of the input position.
316
317 void Position::copy(const Position &pos) {
318
319   memcpy(this, &pos, sizeof(Position));
320 }
321
322
323 /// Position:hidden_checkers<>() returns a bitboard of all pinned (against the
324 /// king) pieces for the given color and for the given pinner type. Or, when
325 /// template parameter FindPinned is false, the pieces of the given color
326 /// candidate for a discovery check against the enemy king.
327 /// Note that checkersBB bitboard must be already updated.
328
329 template<bool FindPinned>
330 Bitboard Position::hidden_checkers(Color c) const {
331
332   Bitboard pinners, result = EmptyBoardBB;
333
334   // Pinned pieces protect our king, dicovery checks attack
335   // the enemy king.
336   Square ksq = king_square(FindPinned ? c : opposite_color(c));
337
338   // Pinners are sliders, not checkers, that give check when
339   // candidate pinned is removed.
340   pinners =  (rooks_and_queens(FindPinned ? opposite_color(c) : c) & RookPseudoAttacks[ksq])
341            | (bishops_and_queens(FindPinned ? opposite_color(c) : c) & BishopPseudoAttacks[ksq]);
342
343   if (FindPinned && pinners)
344       pinners &= ~st->checkersBB;
345
346   while (pinners)
347   {
348       Square s = pop_1st_bit(&pinners);
349       Bitboard b = squares_between(s, ksq) & occupied_squares();
350
351       assert(b);
352
353       if (  !(b & (b - 1)) // Only one bit set?
354           && (b & pieces_of_color(c))) // Is an our piece?
355           result |= b;
356   }
357   return result;
358 }
359
360
361 /// Position:pinned_pieces() returns a bitboard of all pinned (against the
362 /// king) pieces for the given color.
363
364 Bitboard Position::pinned_pieces(Color c) const {
365
366   return hidden_checkers<true>(c);
367 }
368
369
370 /// Position:discovered_check_candidates() returns a bitboard containing all
371 /// pieces for the given side which are candidates for giving a discovered
372 /// check.
373
374 Bitboard Position::discovered_check_candidates(Color c) const {
375
376   return hidden_checkers<false>(c);
377 }
378
379 /// Position::attacks_to() computes a bitboard containing all pieces which
380 /// attacks a given square. There are two versions of this function: One
381 /// which finds attackers of both colors, and one which only finds the
382 /// attackers for one side.
383
384 Bitboard Position::attacks_to(Square s) const {
385
386   return  (pawn_attacks(BLACK, s)   & pawns(WHITE))
387         | (pawn_attacks(WHITE, s)   & pawns(BLACK))
388         | (piece_attacks<KNIGHT>(s) & pieces_of_type(KNIGHT))
389         | (piece_attacks<ROOK>(s)   & rooks_and_queens())
390         | (piece_attacks<BISHOP>(s) & bishops_and_queens())
391         | (piece_attacks<KING>(s)   & pieces_of_type(KING));
392 }
393
394 /// Position::piece_attacks_square() tests whether the piece on square f
395 /// attacks square t.
396
397 bool Position::piece_attacks_square(Piece p, Square f, Square t) const {
398
399   assert(square_is_ok(f));
400   assert(square_is_ok(t));
401
402   switch (p)
403   {
404   case WP:          return pawn_attacks_square(WHITE, f, t);
405   case BP:          return pawn_attacks_square(BLACK, f, t);
406   case WN: case BN: return piece_attacks_square<KNIGHT>(f, t);
407   case WB: case BB: return piece_attacks_square<BISHOP>(f, t);
408   case WR: case BR: return piece_attacks_square<ROOK>(f, t);
409   case WQ: case BQ: return piece_attacks_square<QUEEN>(f, t);
410   case WK: case BK: return piece_attacks_square<KING>(f, t);
411   default: break;
412   }
413   return false;
414 }
415
416
417 /// Position::move_attacks_square() tests whether a move from the current
418 /// position attacks a given square.
419
420 bool Position::move_attacks_square(Move m, Square s) const {
421
422   assert(move_is_ok(m));
423   assert(square_is_ok(s));
424
425   Square f = move_from(m), t = move_to(m);
426
427   assert(square_is_occupied(f));
428
429   if (piece_attacks_square(piece_on(f), t, s))
430       return true;
431
432   // Move the piece and scan for X-ray attacks behind it
433   Bitboard occ = occupied_squares();
434   Color us = color_of_piece_on(f);
435   clear_bit(&occ, f);
436   set_bit(&occ, t);
437   Bitboard xray = ( (rook_attacks_bb(s, occ) & rooks_and_queens())
438                    |(bishop_attacks_bb(s, occ) & bishops_and_queens())) & pieces_of_color(us);
439
440   // If we have attacks we need to verify that are caused by our move
441   // and are not already existent ones.
442   return xray && (xray ^ (xray & piece_attacks<QUEEN>(s)));
443 }
444
445
446 /// Position::find_checkers() computes the checkersBB bitboard, which
447 /// contains a nonzero bit for each checking piece (0, 1 or 2). It
448 /// currently works by calling Position::attacks_to, which is probably
449 /// inefficient. Consider rewriting this function to use the last move
450 /// played, like in non-bitboard versions of Glaurung.
451
452 void Position::find_checkers() {
453
454   Color us = side_to_move();
455   st->checkersBB = attacks_to(king_square(us), opposite_color(us));
456 }
457
458
459 /// Position::pl_move_is_legal() tests whether a pseudo-legal move is legal
460
461 bool Position::pl_move_is_legal(Move m) const {
462
463   return pl_move_is_legal(m, pinned_pieces(side_to_move()));
464 }
465
466 bool Position::pl_move_is_legal(Move m, Bitboard pinned) const {
467
468   assert(is_ok());
469   assert(move_is_ok(m));
470   assert(pinned == pinned_pieces(side_to_move()));
471
472   // If we're in check, all pseudo-legal moves are legal, because our
473   // check evasion generator only generates true legal moves.
474   if (is_check())
475       return true;
476
477   // Castling moves are checked for legality during move generation.
478   if (move_is_castle(m))
479       return true;
480
481   Color us = side_to_move();
482   Color them = opposite_color(us);
483   Square from = move_from(m);
484   Square ksq = king_square(us);
485
486   assert(color_of_piece_on(from) == us);
487   assert(piece_on(ksq) == piece_of_color_and_type(us, KING));
488
489   // En passant captures are a tricky special case.  Because they are
490   // rather uncommon, we do it simply by testing whether the king is attacked
491   // after the move is made
492   if (move_is_ep(m))
493   {
494       Square to = move_to(m);
495       Square capsq = make_square(square_file(to), square_rank(from));
496       Bitboard b = occupied_squares();
497
498       assert(to == ep_square());
499       assert(piece_on(from) == piece_of_color_and_type(us, PAWN));
500       assert(piece_on(capsq) == piece_of_color_and_type(them, PAWN));
501       assert(piece_on(to) == EMPTY);
502
503       clear_bit(&b, from);
504       clear_bit(&b, capsq);
505       set_bit(&b, to);
506
507       return   !(rook_attacks_bb(ksq, b) & rooks_and_queens(them))
508             && !(bishop_attacks_bb(ksq, b) & bishops_and_queens(them));
509   }
510
511   // If the moving piece is a king, check whether the destination
512   // square is attacked by the opponent.
513   if (from == ksq)
514       return !(square_is_attacked(move_to(m), them));
515
516   // A non-king move is legal if and only if it is not pinned or it
517   // is moving along the ray towards or away from the king.
518   return (   !bit_is_set(pinned, from)
519           || (direction_between_squares(from, ksq) == direction_between_squares(move_to(m), ksq)));
520 }
521
522
523 /// Position::move_is_check() tests whether a pseudo-legal move is a check
524
525 bool Position::move_is_check(Move m) const {
526
527   Bitboard dc = discovered_check_candidates(side_to_move());
528   return move_is_check(m, dc);
529 }
530
531 bool Position::move_is_check(Move m, Bitboard dcCandidates) const {
532
533   assert(is_ok());
534   assert(move_is_ok(m));
535   assert(dcCandidates == discovered_check_candidates(side_to_move()));
536
537   Color us = side_to_move();
538   Color them = opposite_color(us);
539   Square from = move_from(m);
540   Square to = move_to(m);
541   Square ksq = king_square(them);
542
543   assert(color_of_piece_on(from) == us);
544   assert(piece_on(ksq) == piece_of_color_and_type(them, KING));
545
546   // Proceed according to the type of the moving piece
547   switch (type_of_piece_on(from))
548   {
549   case PAWN:
550
551       if (bit_is_set(pawn_attacks(them, ksq), to)) // Normal check?
552           return true;
553
554       if (    bit_is_set(dcCandidates, from)      // Discovered check?
555           && (direction_between_squares(from, ksq) != direction_between_squares(to, ksq)))
556           return true;
557
558       if (move_promotion(m)) // Promotion with check?
559       {
560           Bitboard b = occupied_squares();
561           clear_bit(&b, from);
562
563           switch (move_promotion(m))
564           {
565           case KNIGHT:
566               return bit_is_set(piece_attacks<KNIGHT>(to), ksq);
567           case BISHOP:
568               return bit_is_set(bishop_attacks_bb(to, b), ksq);
569           case ROOK:
570               return bit_is_set(rook_attacks_bb(to, b), ksq);
571           case QUEEN:
572               return bit_is_set(queen_attacks_bb(to, b), ksq);
573           default:
574               assert(false);
575           }
576       }
577       // En passant capture with check?  We have already handled the case
578       // of direct checks and ordinary discovered check, the only case we
579       // need to handle is the unusual case of a discovered check through the
580       // captured pawn.
581       else if (move_is_ep(m))
582       {
583           Square capsq = make_square(square_file(to), square_rank(from));
584           Bitboard b = occupied_squares();
585           clear_bit(&b, from);
586           clear_bit(&b, capsq);
587           set_bit(&b, to);
588           return  (rook_attacks_bb(ksq, b) & rooks_and_queens(us))
589                 ||(bishop_attacks_bb(ksq, b) & bishops_and_queens(us));
590       }
591       return false;
592
593   case KNIGHT:
594     return   bit_is_set(dcCandidates, from)              // Discovered check?
595           || bit_is_set(piece_attacks<KNIGHT>(ksq), to); // Normal check?
596
597   case BISHOP:
598     return   bit_is_set(dcCandidates, from)              // Discovered check?
599           || bit_is_set(piece_attacks<BISHOP>(ksq), to); // Normal check?
600
601   case ROOK:
602     return   bit_is_set(dcCandidates, from)              // Discovered check?
603           || bit_is_set(piece_attacks<ROOK>(ksq), to);   // Normal check?
604
605   case QUEEN:
606       // Discovered checks are impossible!
607       assert(!bit_is_set(dcCandidates, from));
608       return bit_is_set(piece_attacks<QUEEN>(ksq), to);  // Normal check?
609
610   case KING:
611       // Discovered check?
612       if (   bit_is_set(dcCandidates, from)
613           && (direction_between_squares(from, ksq) != direction_between_squares(to, ksq)))
614           return true;
615
616       // Castling with check?
617       if (move_is_castle(m))
618       {
619           Square kfrom, kto, rfrom, rto;
620           Bitboard b = occupied_squares();
621           kfrom = from;
622           rfrom = to;
623
624           if (rfrom > kfrom)
625           {
626               kto = relative_square(us, SQ_G1);
627               rto = relative_square(us, SQ_F1);
628           } else {
629               kto = relative_square(us, SQ_C1);
630               rto = relative_square(us, SQ_D1);
631           }
632           clear_bit(&b, kfrom);
633           clear_bit(&b, rfrom);
634           set_bit(&b, rto);
635           set_bit(&b, kto);
636           return bit_is_set(rook_attacks_bb(rto, b), ksq);
637       }
638       return false;
639
640   default: // NO_PIECE_TYPE
641       break;
642   }
643   assert(false);
644   return false;
645 }
646
647
648 /// Position::move_is_capture() tests whether a move from the current
649 /// position is a capture. Move must not be MOVE_NONE.
650
651 bool Position::move_is_capture(Move m) const {
652
653   assert(m != MOVE_NONE);
654
655   return (   !square_is_empty(move_to(m))
656           && (color_of_piece_on(move_to(m)) != color_of_piece_on(move_from(m)))
657          )
658          || move_is_ep(m);
659 }
660
661
662 /// Position::update_checkers() udpates chekers info given the move. It is called
663 /// in do_move() and is faster then find_checkers().
664
665 template<PieceType Piece>
666 inline void Position::update_checkers(Bitboard* pCheckersBB, Square ksq, Square from,
667                                       Square to, Bitboard dcCandidates) {
668
669   const bool Bishop = (Piece == QUEEN || Piece == BISHOP);
670   const bool Rook   = (Piece == QUEEN || Piece == ROOK);
671   const bool Slider = Bishop || Rook;
672
673   if (  (   (Bishop && bit_is_set(BishopPseudoAttacks[ksq], to))
674          || (Rook   && bit_is_set(RookPseudoAttacks[ksq], to)))
675       && bit_is_set(piece_attacks<Piece>(ksq), to)) // slow, try to early skip
676       set_bit(pCheckersBB, to);
677
678   else if (   Piece != KING
679            && !Slider
680            && bit_is_set(piece_attacks<Piece>(ksq), to))
681       set_bit(pCheckersBB, to);
682
683   if (Piece != QUEEN && bit_is_set(dcCandidates, from))
684   {
685       if (Piece != ROOK)
686           (*pCheckersBB) |= (piece_attacks<ROOK>(ksq) & rooks_and_queens(side_to_move()));
687
688       if (Piece != BISHOP)
689           (*pCheckersBB) |= (piece_attacks<BISHOP>(ksq) & bishops_and_queens(side_to_move()));
690   }
691 }
692
693
694 /// Position::do_move() makes a move, and saves all information necessary
695 /// to a StateInfo object. The move is assumed to be legal.
696 /// Pseudo-legal moves should be filtered out before this function is called.
697
698 void Position::do_move(Move m, StateInfo& newSt) {
699
700   do_move(m, newSt, discovered_check_candidates(side_to_move()));
701 }
702
703 void Position::do_move(Move m, StateInfo& newSt, Bitboard dcCandidates) {
704
705   assert(is_ok());
706   assert(move_is_ok(m));
707
708   // Copy some fields of old state to our new StateInfo object except the
709   // ones which are recalculated from scratch anyway, then switch our state
710   // pointer to point to the new, ready to be updated, state.
711   struct ReducedStateInfo {
712     Key key, pawnKey, materialKey;
713     int castleRights, rule50;
714     Square epSquare;
715     Value mgValue, egValue;
716   };
717
718   memcpy(&newSt, st, sizeof(ReducedStateInfo));
719   newSt.capture = NO_PIECE_TYPE;
720   newSt.previous = st;
721   st = &newSt;
722
723   // Save the current key to the history[] array, in order to be able to
724   // detect repetition draws.
725   history[gamePly] = st->key;
726
727   // Increment the 50 moves rule draw counter. Resetting it to zero in the
728   // case of non-reversible moves is taken care of later.
729   st->rule50++;
730
731   if (move_is_castle(m))
732       do_castle_move(m);
733   else if (move_promotion(m))
734       do_promotion_move(m);
735   else if (move_is_ep(m))
736       do_ep_move(m);
737   else
738   {
739     Color us = side_to_move();
740     Color them = opposite_color(us);
741     Square from = move_from(m);
742     Square to = move_to(m);
743
744     assert(color_of_piece_on(from) == us);
745     assert(color_of_piece_on(to) == them || piece_on(to) == EMPTY);
746
747     PieceType piece = type_of_piece_on(from);
748
749     st->capture = type_of_piece_on(to);
750
751     if (st->capture)
752       do_capture_move(m, st->capture, them, to);
753
754     // Move the piece
755     clear_bit(&(byColorBB[us]), from);
756     clear_bit(&(byTypeBB[piece]), from);
757     clear_bit(&(byTypeBB[0]), from); // HACK: byTypeBB[0] == occupied squares
758     set_bit(&(byColorBB[us]), to);
759     set_bit(&(byTypeBB[piece]), to);
760     set_bit(&(byTypeBB[0]), to); // HACK: byTypeBB[0] == occupied squares
761     board[to] = board[from];
762     board[from] = EMPTY;
763
764     // Update hash key
765     st->key ^= zobrist[us][piece][from] ^ zobrist[us][piece][to];
766
767     // Update incremental scores
768     st->mgValue -= pst<MidGame>(us, piece, from);
769     st->mgValue += pst<MidGame>(us, piece, to);
770     st->egValue -= pst<EndGame>(us, piece, from);
771     st->egValue += pst<EndGame>(us, piece, to);
772
773     // If the moving piece was a king, update the king square
774     if (piece == KING)
775         kingSquare[us] = to;
776
777     // Reset en passant square
778     if (st->epSquare != SQ_NONE)
779     {
780         st->key ^= zobEp[st->epSquare];
781         st->epSquare = SQ_NONE;
782     }
783
784     // If the moving piece was a pawn do some special extra work
785     if (piece == PAWN)
786     {
787         // Reset rule 50 draw counter
788         st->rule50 = 0;
789
790         // Update pawn hash key
791         st->pawnKey ^= zobrist[us][PAWN][from] ^ zobrist[us][PAWN][to];
792
793         // Set en passant square, only if moved pawn can be captured
794         if (abs(int(to) - int(from)) == 16)
795         {
796             if (   (us == WHITE && (pawn_attacks(WHITE, from + DELTA_N) & pawns(BLACK)))
797                 || (us == BLACK && (pawn_attacks(BLACK, from + DELTA_S) & pawns(WHITE))))
798             {
799                 st->epSquare = Square((int(from) + int(to)) / 2);
800                 st->key ^= zobEp[st->epSquare];
801             }
802         }
803     }
804
805     // Update piece lists
806     pieceList[us][piece][index[from]] = to;
807     index[to] = index[from];
808
809     // Update castle rights
810     st->key ^= zobCastle[st->castleRights];
811     st->castleRights &= castleRightsMask[from];
812     st->castleRights &= castleRightsMask[to];
813     st->key ^= zobCastle[st->castleRights];
814
815     // Update checkers bitboard, piece must be already moved
816     st->checkersBB = EmptyBoardBB;
817     Square ksq = king_square(them);
818     switch (piece)
819     {
820     case PAWN:   update_checkers<PAWN>(&(st->checkersBB), ksq, from, to, dcCandidates);   break;
821     case KNIGHT: update_checkers<KNIGHT>(&(st->checkersBB), ksq, from, to, dcCandidates); break;
822     case BISHOP: update_checkers<BISHOP>(&(st->checkersBB), ksq, from, to, dcCandidates); break;
823     case ROOK:   update_checkers<ROOK>(&(st->checkersBB), ksq, from, to, dcCandidates);   break;
824     case QUEEN:  update_checkers<QUEEN>(&(st->checkersBB), ksq, from, to, dcCandidates);  break;
825     case KING:   update_checkers<KING>(&(st->checkersBB), ksq, from, to, dcCandidates);   break;
826     default: assert(false); break;
827     }
828   }
829
830   // Finish
831   st->key ^= zobSideToMove;
832   sideToMove = opposite_color(sideToMove);
833   gamePly++;
834
835   st->mgValue += (sideToMove == WHITE)? TempoValueMidgame : -TempoValueMidgame;
836   st->egValue += (sideToMove == WHITE)? TempoValueEndgame : -TempoValueEndgame;
837
838   assert(is_ok());
839 }
840
841
842 /// Position::do_capture_move() is a private method used to update captured
843 /// piece info. It is called from the main Position::do_move function.
844
845 void Position::do_capture_move(Move m, PieceType capture, Color them, Square to) {
846
847     assert(capture != KING);
848
849     // Remove captured piece
850     clear_bit(&(byColorBB[them]), to);
851     clear_bit(&(byTypeBB[capture]), to);
852
853     // Update hash key
854     st->key ^= zobrist[them][capture][to];
855
856     // If the captured piece was a pawn, update pawn hash key
857     if (capture == PAWN)
858         st->pawnKey ^= zobrist[them][PAWN][to];
859
860     // Update incremental scores
861     st->mgValue -= pst<MidGame>(them, capture, to);
862     st->egValue -= pst<EndGame>(them, capture, to);
863
864     assert(!move_promotion(m) || capture != PAWN);
865
866     // Update material
867     if (capture != PAWN)
868         npMaterial[them] -= piece_value_midgame(capture);
869
870     // Update material hash key
871     st->materialKey ^= zobMaterial[them][capture][pieceCount[them][capture]];
872
873     // Update piece count
874     pieceCount[them][capture]--;
875
876     // Update piece list
877     pieceList[them][capture][index[to]] = pieceList[them][capture][pieceCount[them][capture]];
878     index[pieceList[them][capture][index[to]]] = index[to];
879
880     // Reset rule 50 counter
881     st->rule50 = 0;
882 }
883
884
885 /// Position::do_castle_move() is a private method used to make a castling
886 /// move. It is called from the main Position::do_move function. Note that
887 /// castling moves are encoded as "king captures friendly rook" moves, for
888 /// instance white short castling in a non-Chess960 game is encoded as e1h1.
889
890 void Position::do_castle_move(Move m) {
891
892   assert(is_ok());
893   assert(move_is_ok(m));
894   assert(move_is_castle(m));
895
896   Color us = side_to_move();
897   Color them = opposite_color(us);
898
899   // Find source squares for king and rook
900   Square kfrom = move_from(m);
901   Square rfrom = move_to(m);  // HACK: See comment at beginning of function
902   Square kto, rto;
903
904   assert(piece_on(kfrom) == piece_of_color_and_type(us, KING));
905   assert(piece_on(rfrom) == piece_of_color_and_type(us, ROOK));
906
907   // Find destination squares for king and rook
908   if (rfrom > kfrom) // O-O
909   {
910       kto = relative_square(us, SQ_G1);
911       rto = relative_square(us, SQ_F1);
912   } else { // O-O-O
913       kto = relative_square(us, SQ_C1);
914       rto = relative_square(us, SQ_D1);
915   }
916
917   // Remove pieces from source squares
918   clear_bit(&(byColorBB[us]), kfrom);
919   clear_bit(&(byTypeBB[KING]), kfrom);
920   clear_bit(&(byTypeBB[0]), kfrom); // HACK: byTypeBB[0] == occupied squares
921   clear_bit(&(byColorBB[us]), rfrom);
922   clear_bit(&(byTypeBB[ROOK]), rfrom);
923   clear_bit(&(byTypeBB[0]), rfrom); // HACK: byTypeBB[0] == occupied squares
924
925   // Put pieces on destination squares
926   set_bit(&(byColorBB[us]), kto);
927   set_bit(&(byTypeBB[KING]), kto);
928   set_bit(&(byTypeBB[0]), kto); // HACK: byTypeBB[0] == occupied squares
929   set_bit(&(byColorBB[us]), rto);
930   set_bit(&(byTypeBB[ROOK]), rto);
931   set_bit(&(byTypeBB[0]), rto); // HACK: byTypeBB[0] == occupied squares
932
933   // Update board array
934   board[kfrom] = board[rfrom] = EMPTY;
935   board[kto] = piece_of_color_and_type(us, KING);
936   board[rto] = piece_of_color_and_type(us, ROOK);
937
938   // Update king square
939   kingSquare[us] = kto;
940
941   // Update piece lists
942   pieceList[us][KING][index[kfrom]] = kto;
943   pieceList[us][ROOK][index[rfrom]] = rto;
944   int tmp = index[rfrom];
945   index[kto] = index[kfrom];
946   index[rto] = tmp;
947
948   // Update incremental scores
949   st->mgValue -= pst<MidGame>(us, KING, kfrom);
950   st->mgValue += pst<MidGame>(us, KING, kto);
951   st->egValue -= pst<EndGame>(us, KING, kfrom);
952   st->egValue += pst<EndGame>(us, KING, kto);
953   st->mgValue -= pst<MidGame>(us, ROOK, rfrom);
954   st->mgValue += pst<MidGame>(us, ROOK, rto);
955   st->egValue -= pst<EndGame>(us, ROOK, rfrom);
956   st->egValue += pst<EndGame>(us, ROOK, rto);
957
958   // Update hash key
959   st->key ^= zobrist[us][KING][kfrom] ^ zobrist[us][KING][kto];
960   st->key ^= zobrist[us][ROOK][rfrom] ^ zobrist[us][ROOK][rto];
961
962   // Clear en passant square
963   if (st->epSquare != SQ_NONE)
964   {
965       st->key ^= zobEp[st->epSquare];
966       st->epSquare = SQ_NONE;
967   }
968
969   // Update castling rights
970   st->key ^= zobCastle[st->castleRights];
971   st->castleRights &= castleRightsMask[kfrom];
972   st->key ^= zobCastle[st->castleRights];
973
974   // Reset rule 50 counter
975   st->rule50 = 0;
976
977   // Update checkers BB
978   st->checkersBB = attacks_to(king_square(them), us);
979 }
980
981
982 /// Position::do_promotion_move() is a private method used to make a promotion
983 /// move. It is called from the main Position::do_move function.
984
985 void Position::do_promotion_move(Move m) {
986
987   Color us, them;
988   Square from, to;
989   PieceType promotion;
990
991   assert(is_ok());
992   assert(move_is_ok(m));
993   assert(move_promotion(m));
994
995   us = side_to_move();
996   them = opposite_color(us);
997   from = move_from(m);
998   to = move_to(m);
999
1000   assert(relative_rank(us, to) == RANK_8);
1001   assert(piece_on(from) == piece_of_color_and_type(us, PAWN));
1002   assert(color_of_piece_on(to) == them || square_is_empty(to));
1003
1004   st->capture = type_of_piece_on(to);
1005
1006   if (st->capture)
1007     do_capture_move(m, st->capture, them, to);
1008
1009   // Remove pawn
1010   clear_bit(&(byColorBB[us]), from);
1011   clear_bit(&(byTypeBB[PAWN]), from);
1012   clear_bit(&(byTypeBB[0]), from); // HACK: byTypeBB[0] == occupied squares
1013   board[from] = EMPTY;
1014
1015   // Insert promoted piece
1016   promotion = move_promotion(m);
1017   assert(promotion >= KNIGHT && promotion <= QUEEN);
1018   set_bit(&(byColorBB[us]), to);
1019   set_bit(&(byTypeBB[promotion]), to);
1020   set_bit(&(byTypeBB[0]), to); // HACK: byTypeBB[0] == occupied squares
1021   board[to] = piece_of_color_and_type(us, promotion);
1022
1023   // Update hash key
1024   st->key ^= zobrist[us][PAWN][from] ^ zobrist[us][promotion][to];
1025
1026   // Update pawn hash key
1027   st->pawnKey ^= zobrist[us][PAWN][from];
1028
1029   // Update material key
1030   st->materialKey ^= zobMaterial[us][PAWN][pieceCount[us][PAWN]];
1031   st->materialKey ^= zobMaterial[us][promotion][pieceCount[us][promotion]+1];
1032
1033   // Update piece counts
1034   pieceCount[us][PAWN]--;
1035   pieceCount[us][promotion]++;
1036
1037   // Update piece lists
1038   pieceList[us][PAWN][index[from]] = pieceList[us][PAWN][pieceCount[us][PAWN]];
1039   index[pieceList[us][PAWN][index[from]]] = index[from];
1040   pieceList[us][promotion][pieceCount[us][promotion] - 1] = to;
1041   index[to] = pieceCount[us][promotion] - 1;
1042
1043   // Update incremental scores
1044   st->mgValue -= pst<MidGame>(us, PAWN, from);
1045   st->mgValue += pst<MidGame>(us, promotion, to);
1046   st->egValue -= pst<EndGame>(us, PAWN, from);
1047   st->egValue += pst<EndGame>(us, promotion, to);
1048
1049   // Update material
1050   npMaterial[us] += piece_value_midgame(promotion);
1051
1052   // Clear the en passant square
1053   if (st->epSquare != SQ_NONE)
1054   {
1055       st->key ^= zobEp[st->epSquare];
1056       st->epSquare = SQ_NONE;
1057   }
1058
1059   // Update castle rights
1060   st->key ^= zobCastle[st->castleRights];
1061   st->castleRights &= castleRightsMask[to];
1062   st->key ^= zobCastle[st->castleRights];
1063
1064   // Reset rule 50 counter
1065   st->rule50 = 0;
1066
1067   // Update checkers BB
1068   st->checkersBB = attacks_to(king_square(them), us);
1069 }
1070
1071
1072 /// Position::do_ep_move() is a private method used to make an en passant
1073 /// capture. It is called from the main Position::do_move function.
1074
1075 void Position::do_ep_move(Move m) {
1076
1077   Color us, them;
1078   Square from, to, capsq;
1079
1080   assert(is_ok());
1081   assert(move_is_ok(m));
1082   assert(move_is_ep(m));
1083
1084   us = side_to_move();
1085   them = opposite_color(us);
1086   from = move_from(m);
1087   to = move_to(m);
1088   capsq = (us == WHITE)? (to - DELTA_N) : (to - DELTA_S);
1089
1090   assert(to == st->epSquare);
1091   assert(relative_rank(us, to) == RANK_6);
1092   assert(piece_on(to) == EMPTY);
1093   assert(piece_on(from) == piece_of_color_and_type(us, PAWN));
1094   assert(piece_on(capsq) == piece_of_color_and_type(them, PAWN));
1095
1096   // Remove captured piece
1097   clear_bit(&(byColorBB[them]), capsq);
1098   clear_bit(&(byTypeBB[PAWN]), capsq);
1099   clear_bit(&(byTypeBB[0]), capsq); // HACK: byTypeBB[0] == occupied squares
1100   board[capsq] = EMPTY;
1101
1102   // Remove moving piece from source square
1103   clear_bit(&(byColorBB[us]), from);
1104   clear_bit(&(byTypeBB[PAWN]), from);
1105   clear_bit(&(byTypeBB[0]), from); // HACK: byTypeBB[0] == occupied squares
1106
1107   // Put moving piece on destination square
1108   set_bit(&(byColorBB[us]), to);
1109   set_bit(&(byTypeBB[PAWN]), to);
1110   set_bit(&(byTypeBB[0]), to); // HACK: byTypeBB[0] == occupied squares
1111   board[to] = board[from];
1112   board[from] = EMPTY;
1113
1114   // Update material hash key
1115   st->materialKey ^= zobMaterial[them][PAWN][pieceCount[them][PAWN]];
1116
1117   // Update piece count
1118   pieceCount[them][PAWN]--;
1119
1120   // Update piece list
1121   pieceList[us][PAWN][index[from]] = to;
1122   index[to] = index[from];
1123   pieceList[them][PAWN][index[capsq]] = pieceList[them][PAWN][pieceCount[them][PAWN]];
1124   index[pieceList[them][PAWN][index[capsq]]] = index[capsq];
1125
1126   // Update hash key
1127   st->key ^= zobrist[us][PAWN][from] ^ zobrist[us][PAWN][to];
1128   st->key ^= zobrist[them][PAWN][capsq];
1129   st->key ^= zobEp[st->epSquare];
1130
1131   // Update pawn hash key
1132   st->pawnKey ^= zobrist[us][PAWN][from] ^ zobrist[us][PAWN][to];
1133   st->pawnKey ^= zobrist[them][PAWN][capsq];
1134
1135   // Update incremental scores
1136   st->mgValue -= pst<MidGame>(them, PAWN, capsq);
1137   st->mgValue -= pst<MidGame>(us, PAWN, from);
1138   st->mgValue += pst<MidGame>(us, PAWN, to);
1139   st->egValue -= pst<EndGame>(them, PAWN, capsq);
1140   st->egValue -= pst<EndGame>(us, PAWN, from);
1141   st->egValue += pst<EndGame>(us, PAWN, to);
1142
1143   // Reset en passant square
1144   st->epSquare = SQ_NONE;
1145
1146   // Reset rule 50 counter
1147   st->rule50 = 0;
1148
1149   // Update checkers BB
1150   st->checkersBB = attacks_to(king_square(them), us);
1151 }
1152
1153
1154 /// Position::undo_move() unmakes a move. When it returns, the position should
1155 /// be restored to exactly the same state as before the move was made.
1156
1157 void Position::undo_move(Move m) {
1158
1159   assert(is_ok());
1160   assert(move_is_ok(m));
1161
1162   gamePly--;
1163   sideToMove = opposite_color(sideToMove);
1164
1165   if (move_is_castle(m))
1166       undo_castle_move(m);
1167   else if (move_promotion(m))
1168       undo_promotion_move(m);
1169   else if (move_is_ep(m))
1170       undo_ep_move(m);
1171   else
1172   {
1173       Color us, them;
1174       Square from, to;
1175       PieceType piece;
1176
1177       us = side_to_move();
1178       them = opposite_color(us);
1179       from = move_from(m);
1180       to = move_to(m);
1181
1182       assert(piece_on(from) == EMPTY);
1183       assert(color_of_piece_on(to) == us);
1184
1185       // Put the piece back at the source square
1186       piece = type_of_piece_on(to);
1187       set_bit(&(byColorBB[us]), from);
1188       set_bit(&(byTypeBB[piece]), from);
1189       set_bit(&(byTypeBB[0]), from); // HACK: byTypeBB[0] == occupied squares
1190       board[from] = piece_of_color_and_type(us, piece);
1191
1192       // Clear the destination square
1193       clear_bit(&(byColorBB[us]), to);
1194       clear_bit(&(byTypeBB[piece]), to);
1195       clear_bit(&(byTypeBB[0]), to); // HACK: byTypeBB[0] == occupied squares
1196
1197       // If the moving piece was a king, update the king square
1198       if (piece == KING)
1199           kingSquare[us] = from;
1200
1201       // Update piece list
1202       pieceList[us][piece][index[to]] = from;
1203       index[from] = index[to];
1204
1205       if (st->capture)
1206       {
1207           assert(st->capture != KING);
1208
1209           // Replace the captured piece
1210           set_bit(&(byColorBB[them]), to);
1211           set_bit(&(byTypeBB[st->capture]), to);
1212           set_bit(&(byTypeBB[0]), to);
1213           board[to] = piece_of_color_and_type(them, st->capture);
1214
1215           // Update material
1216           if (st->capture != PAWN)
1217               npMaterial[them] += piece_value_midgame(st->capture);
1218
1219           // Update piece list
1220           pieceList[them][st->capture][pieceCount[them][st->capture]] = to;
1221           index[to] = pieceCount[them][st->capture];
1222
1223           // Update piece count
1224           pieceCount[them][st->capture]++;
1225       } else
1226           board[to] = EMPTY;
1227   }
1228
1229   // Finally point our state pointer back to the previous state
1230   st = st->previous;
1231
1232   assert(is_ok());
1233 }
1234
1235
1236 /// Position::undo_castle_move() is a private method used to unmake a castling
1237 /// move. It is called from the main Position::undo_move function. Note that
1238 /// castling moves are encoded as "king captures friendly rook" moves, for
1239 /// instance white short castling in a non-Chess960 game is encoded as e1h1.
1240
1241 void Position::undo_castle_move(Move m) {
1242
1243   assert(move_is_ok(m));
1244   assert(move_is_castle(m));
1245
1246   // When we have arrived here, some work has already been done by
1247   // Position::undo_move.  In particular, the side to move has been switched,
1248   // so the code below is correct.
1249   Color us = side_to_move();
1250
1251   // Find source squares for king and rook
1252   Square kfrom = move_from(m);
1253   Square rfrom = move_to(m);  // HACK: See comment at beginning of function
1254   Square kto, rto;
1255
1256   // Find destination squares for king and rook
1257   if (rfrom > kfrom) // O-O
1258   {
1259       kto = relative_square(us, SQ_G1);
1260       rto = relative_square(us, SQ_F1);
1261   } else { // O-O-O
1262       kto = relative_square(us, SQ_C1);
1263       rto = relative_square(us, SQ_D1);
1264   }
1265
1266   assert(piece_on(kto) == piece_of_color_and_type(us, KING));
1267   assert(piece_on(rto) == piece_of_color_and_type(us, ROOK));
1268
1269   // Remove pieces from destination squares
1270   clear_bit(&(byColorBB[us]), kto);
1271   clear_bit(&(byTypeBB[KING]), kto);
1272   clear_bit(&(byTypeBB[0]), kto); // HACK: byTypeBB[0] == occupied squares
1273   clear_bit(&(byColorBB[us]), rto);
1274   clear_bit(&(byTypeBB[ROOK]), rto);
1275   clear_bit(&(byTypeBB[0]), rto); // HACK: byTypeBB[0] == occupied squares
1276
1277   // Put pieces on source squares
1278   set_bit(&(byColorBB[us]), kfrom);
1279   set_bit(&(byTypeBB[KING]), kfrom);
1280   set_bit(&(byTypeBB[0]), kfrom); // HACK: byTypeBB[0] == occupied squares
1281   set_bit(&(byColorBB[us]), rfrom);
1282   set_bit(&(byTypeBB[ROOK]), rfrom);
1283   set_bit(&(byTypeBB[0]), rfrom); // HACK: byTypeBB[0] == occupied squares
1284
1285   // Update board
1286   board[rto] = board[kto] = EMPTY;
1287   board[rfrom] = piece_of_color_and_type(us, ROOK);
1288   board[kfrom] = piece_of_color_and_type(us, KING);
1289
1290   // Update king square
1291   kingSquare[us] = kfrom;
1292
1293   // Update piece lists
1294   pieceList[us][KING][index[kto]] = kfrom;
1295   pieceList[us][ROOK][index[rto]] = rfrom;
1296   int tmp = index[rto];  // Necessary because we may have rto == kfrom in FRC.
1297   index[kfrom] = index[kto];
1298   index[rfrom] = tmp;
1299 }
1300
1301
1302 /// Position::undo_promotion_move() is a private method used to unmake a
1303 /// promotion move. It is called from the main Position::do_move
1304 /// function.
1305
1306 void Position::undo_promotion_move(Move m) {
1307
1308   Color us, them;
1309   Square from, to;
1310   PieceType promotion;
1311
1312   assert(move_is_ok(m));
1313   assert(move_promotion(m));
1314
1315   // When we have arrived here, some work has already been done by
1316   // Position::undo_move.  In particular, the side to move has been switched,
1317   // so the code below is correct.
1318   us = side_to_move();
1319   them = opposite_color(us);
1320   from = move_from(m);
1321   to = move_to(m);
1322
1323   assert(relative_rank(us, to) == RANK_8);
1324   assert(piece_on(from) == EMPTY);
1325
1326   // Remove promoted piece
1327   promotion = move_promotion(m);
1328   assert(piece_on(to)==piece_of_color_and_type(us, promotion));
1329   assert(promotion >= KNIGHT && promotion <= QUEEN);
1330   clear_bit(&(byColorBB[us]), to);
1331   clear_bit(&(byTypeBB[promotion]), to);
1332   clear_bit(&(byTypeBB[0]), to); // HACK: byTypeBB[0] == occupied squares
1333
1334   // Insert pawn at source square
1335   set_bit(&(byColorBB[us]), from);
1336   set_bit(&(byTypeBB[PAWN]), from);
1337   set_bit(&(byTypeBB[0]), from); // HACK: byTypeBB[0] == occupied squares
1338   board[from] = piece_of_color_and_type(us, PAWN);
1339
1340   // Update material
1341   npMaterial[us] -= piece_value_midgame(promotion);
1342
1343   // Update piece list
1344   pieceList[us][PAWN][pieceCount[us][PAWN]] = from;
1345   index[from] = pieceCount[us][PAWN];
1346   pieceList[us][promotion][index[to]] =
1347     pieceList[us][promotion][pieceCount[us][promotion] - 1];
1348   index[pieceList[us][promotion][index[to]]] = index[to];
1349
1350   // Update piece counts
1351   pieceCount[us][promotion]--;
1352   pieceCount[us][PAWN]++;
1353
1354   if (st->capture)
1355   {
1356       assert(st->capture != KING);
1357
1358       // Insert captured piece:
1359       set_bit(&(byColorBB[them]), to);
1360       set_bit(&(byTypeBB[st->capture]), to);
1361       set_bit(&(byTypeBB[0]), to); // HACK: byTypeBB[0] == occupied squares
1362       board[to] = piece_of_color_and_type(them, st->capture);
1363
1364       // Update material. Because the move is a promotion move, we know
1365       // that the captured piece cannot be a pawn.
1366       assert(st->capture != PAWN);
1367       npMaterial[them] += piece_value_midgame(st->capture);
1368
1369       // Update piece list
1370       pieceList[them][st->capture][pieceCount[them][st->capture]] = to;
1371       index[to] = pieceCount[them][st->capture];
1372
1373       // Update piece count
1374       pieceCount[them][st->capture]++;
1375   } else
1376       board[to] = EMPTY;
1377 }
1378
1379
1380 /// Position::undo_ep_move() is a private method used to unmake an en passant
1381 /// capture. It is called from the main Position::undo_move function.
1382
1383 void Position::undo_ep_move(Move m) {
1384
1385   assert(move_is_ok(m));
1386   assert(move_is_ep(m));
1387
1388   // When we have arrived here, some work has already been done by
1389   // Position::undo_move. In particular, the side to move has been switched,
1390   // so the code below is correct.
1391   Color us = side_to_move();
1392   Color them = opposite_color(us);
1393   Square from = move_from(m);
1394   Square to = move_to(m);
1395   Square capsq = (us == WHITE)? (to - DELTA_N) : (to - DELTA_S);
1396
1397   assert(to == st->previous->epSquare);
1398   assert(relative_rank(us, to) == RANK_6);
1399   assert(piece_on(to) == piece_of_color_and_type(us, PAWN));
1400   assert(piece_on(from) == EMPTY);
1401   assert(piece_on(capsq) == EMPTY);
1402
1403   // Replace captured piece
1404   set_bit(&(byColorBB[them]), capsq);
1405   set_bit(&(byTypeBB[PAWN]), capsq);
1406   set_bit(&(byTypeBB[0]), capsq);
1407   board[capsq] = piece_of_color_and_type(them, PAWN);
1408
1409   // Remove moving piece from destination square
1410   clear_bit(&(byColorBB[us]), to);
1411   clear_bit(&(byTypeBB[PAWN]), to);
1412   clear_bit(&(byTypeBB[0]), to);
1413   board[to] = EMPTY;
1414
1415   // Replace moving piece at source square
1416   set_bit(&(byColorBB[us]), from);
1417   set_bit(&(byTypeBB[PAWN]), from);
1418   set_bit(&(byTypeBB[0]), from);
1419   board[from] = piece_of_color_and_type(us, PAWN);
1420
1421   // Update piece list:
1422   pieceList[us][PAWN][index[to]] = from;
1423   index[from] = index[to];
1424   pieceList[them][PAWN][pieceCount[them][PAWN]] = capsq;
1425   index[capsq] = pieceCount[them][PAWN];
1426
1427   // Update piece count:
1428   pieceCount[them][PAWN]++;
1429 }
1430
1431
1432 /// Position::do_null_move makes() a "null move": It switches the side to move
1433 /// and updates the hash key without executing any move on the board.
1434
1435 void Position::do_null_move(StateInfo& backupSt) {
1436
1437   assert(is_ok());
1438   assert(!is_check());
1439
1440   // Back up the information necessary to undo the null move to the supplied
1441   // StateInfo object. In the case of a null move, the only thing we need to
1442   // remember is the last move made and the en passant square.
1443   // Note that differently from normal case here backupSt is actually used as
1444   // a backup storage not as a new state to be used.
1445   backupSt.lastMove = st->lastMove;
1446   backupSt.epSquare = st->epSquare;
1447   backupSt.previous = st->previous;
1448   st->previous = &backupSt;
1449
1450   // Save the current key to the history[] array, in order to be able to
1451   // detect repetition draws.
1452   history[gamePly] = st->key;
1453
1454   // Update the necessary information
1455   sideToMove = opposite_color(sideToMove);
1456   if (st->epSquare != SQ_NONE)
1457       st->key ^= zobEp[st->epSquare];
1458
1459   st->epSquare = SQ_NONE;
1460   st->rule50++;
1461   gamePly++;
1462   st->key ^= zobSideToMove;
1463
1464   st->mgValue += (sideToMove == WHITE)? TempoValueMidgame : -TempoValueMidgame;
1465   st->egValue += (sideToMove == WHITE)? TempoValueEndgame : -TempoValueEndgame;
1466
1467   assert(is_ok());
1468 }
1469
1470
1471 /// Position::undo_null_move() unmakes a "null move".
1472
1473 void Position::undo_null_move() {
1474
1475   assert(is_ok());
1476   assert(!is_check());
1477
1478   // Restore information from the our backup StateInfo object
1479   st->lastMove = st->previous->lastMove;
1480   st->epSquare = st->previous->epSquare;
1481   st->previous = st->previous->previous;
1482
1483   if (st->epSquare != SQ_NONE)
1484       st->key ^= zobEp[st->epSquare];
1485
1486   // Update the necessary information
1487   sideToMove = opposite_color(sideToMove);
1488   st->rule50--;
1489   gamePly--;
1490   st->key ^= zobSideToMove;
1491
1492   st->mgValue += (sideToMove == WHITE)? TempoValueMidgame : -TempoValueMidgame;
1493   st->egValue += (sideToMove == WHITE)? TempoValueEndgame : -TempoValueEndgame;
1494
1495   assert(is_ok());
1496 }
1497
1498
1499 /// Position::see() is a static exchange evaluator: It tries to estimate the
1500 /// material gain or loss resulting from a move. There are three versions of
1501 /// this function: One which takes a destination square as input, one takes a
1502 /// move, and one which takes a 'from' and a 'to' square. The function does
1503 /// not yet understand promotions captures.
1504
1505 int Position::see(Square to) const {
1506
1507   assert(square_is_ok(to));
1508   return see(SQ_NONE, to);
1509 }
1510
1511 int Position::see(Move m) const {
1512
1513   assert(move_is_ok(m));
1514   return see(move_from(m), move_to(m));
1515 }
1516
1517 int Position::see(Square from, Square to) const {
1518
1519   // Material values
1520   static const int seeValues[18] = {
1521     0, PawnValueMidgame, KnightValueMidgame, BishopValueMidgame,
1522        RookValueMidgame, QueenValueMidgame, QueenValueMidgame*10, 0,
1523     0, PawnValueMidgame, KnightValueMidgame, BishopValueMidgame,
1524        RookValueMidgame, QueenValueMidgame, QueenValueMidgame*10, 0,
1525     0, 0
1526   };
1527
1528   Bitboard attackers, occ, b;
1529
1530   assert(square_is_ok(from) || from == SQ_NONE);
1531   assert(square_is_ok(to));
1532
1533   // Initialize colors
1534   Color us = (from != SQ_NONE ? color_of_piece_on(from) : opposite_color(color_of_piece_on(to)));
1535   Color them = opposite_color(us);
1536
1537   // Initialize pieces
1538   Piece piece = piece_on(from);
1539   Piece capture = piece_on(to);
1540
1541   // Find all attackers to the destination square, with the moving piece
1542   // removed, but possibly an X-ray attacker added behind it.
1543   occ = occupied_squares();
1544
1545   // Handle en passant moves
1546   if (st->epSquare == to && type_of_piece_on(from) == PAWN)
1547   {
1548       assert(capture == EMPTY);
1549
1550       Square capQq = (side_to_move() == WHITE)? (to - DELTA_N) : (to - DELTA_S);
1551       capture = piece_on(capQq);
1552
1553       assert(type_of_piece_on(capQq) == PAWN);
1554
1555       // Remove the captured pawn
1556       clear_bit(&occ, capQq);
1557   }
1558
1559   while (true)
1560   {
1561       clear_bit(&occ, from);
1562       attackers =  (rook_attacks_bb(to, occ)   & rooks_and_queens())
1563                  | (bishop_attacks_bb(to, occ) & bishops_and_queens())
1564                  | (piece_attacks<KNIGHT>(to)  & knights())
1565                  | (piece_attacks<KING>(to)    & kings())
1566                  | (pawn_attacks(WHITE, to)    & pawns(BLACK))
1567                  | (pawn_attacks(BLACK, to)    & pawns(WHITE));
1568
1569       if (from != SQ_NONE)
1570           break;
1571
1572       // If we don't have any attacker we are finished
1573       if ((attackers & pieces_of_color(us)) == EmptyBoardBB)
1574           return 0;
1575
1576       // Locate the least valuable attacker to the destination square
1577       // and use it to initialize from square.
1578       PieceType pt;
1579       for (pt = PAWN; !(attackers & pieces_of_color_and_type(us, pt)); pt++)
1580           assert(pt < KING);
1581
1582       from = first_1(attackers & pieces_of_color_and_type(us, pt));
1583       piece = piece_on(from);
1584   }
1585
1586   // If the opponent has no attackers we are finished
1587   if ((attackers & pieces_of_color(them)) == EmptyBoardBB)
1588       return seeValues[capture];
1589
1590   attackers &= occ; // Remove the moving piece
1591
1592   // The destination square is defended, which makes things rather more
1593   // difficult to compute. We proceed by building up a "swap list" containing
1594   // the material gain or loss at each stop in a sequence of captures to the
1595   // destination square, where the sides alternately capture, and always
1596   // capture with the least valuable piece. After each capture, we look for
1597   // new X-ray attacks from behind the capturing piece.
1598   int lastCapturingPieceValue = seeValues[piece];
1599   int swapList[32], n = 1;
1600   Color c = them;
1601   PieceType pt;
1602
1603   swapList[0] = seeValues[capture];
1604
1605   do {
1606       // Locate the least valuable attacker for the side to move. The loop
1607       // below looks like it is potentially infinite, but it isn't. We know
1608       // that the side to move still has at least one attacker left.
1609       for (pt = PAWN; !(attackers & pieces_of_color_and_type(c, pt)); pt++)
1610           assert(pt < KING);
1611
1612       // Remove the attacker we just found from the 'attackers' bitboard,
1613       // and scan for new X-ray attacks behind the attacker.
1614       b = attackers & pieces_of_color_and_type(c, pt);
1615       occ ^= (b & -b);
1616       attackers |=  (rook_attacks_bb(to, occ) & rooks_and_queens())
1617                   | (bishop_attacks_bb(to, occ) & bishops_and_queens());
1618
1619       attackers &= occ;
1620
1621       // Add the new entry to the swap list
1622       assert(n < 32);
1623       swapList[n] = -swapList[n - 1] + lastCapturingPieceValue;
1624       n++;
1625
1626       // Remember the value of the capturing piece, and change the side to move
1627       // before beginning the next iteration
1628       lastCapturingPieceValue = seeValues[pt];
1629       c = opposite_color(c);
1630
1631       // Stop after a king capture
1632       if (pt == KING && (attackers & pieces_of_color(c)))
1633       {
1634           assert(n < 32);
1635           swapList[n++] = 100;
1636           break;
1637       }
1638   } while (attackers & pieces_of_color(c));
1639
1640   // Having built the swap list, we negamax through it to find the best
1641   // achievable score from the point of view of the side to move
1642   while (--n)
1643       swapList[n-1] = Min(-swapList[n], swapList[n-1]);
1644
1645   return swapList[0];
1646 }
1647
1648
1649 /// Position::setStartState() copies the content of the argument
1650 /// inside startState and makes st point to it. This is needed
1651 /// when the st pointee could become stale, as example because
1652 /// the caller is about to going out of scope.
1653
1654 void Position::setStartState(const StateInfo& s) {
1655
1656   startState = s;
1657   st = &startState;
1658 }
1659
1660
1661 /// Position::clear() erases the position object to a pristine state, with an
1662 /// empty board, white to move, and no castling rights.
1663
1664 void Position::clear() {
1665
1666   st = &startState;
1667   memset(st, 0, sizeof(StateInfo));
1668   st->epSquare = SQ_NONE;
1669
1670   memset(index, 0, sizeof(int) * 64);
1671   memset(byColorBB, 0, sizeof(Bitboard) * 2);
1672
1673   for (int i = 0; i < 64; i++)
1674       board[i] = EMPTY;
1675
1676   for (int i = 0; i < 7; i++)
1677   {
1678       byTypeBB[i] = EmptyBoardBB;
1679       pieceCount[0][i] = pieceCount[1][i] = 0;
1680       for (int j = 0; j < 8; j++)
1681           pieceList[0][i][j] = pieceList[1][i][j] = SQ_NONE;
1682   }
1683
1684   sideToMove = WHITE;
1685   gamePly = 0;
1686   initialKFile = FILE_E;
1687   initialKRFile = FILE_H;
1688   initialQRFile = FILE_A;
1689 }
1690
1691
1692 /// Position::reset_game_ply() simply sets gamePly to 0. It is used from the
1693 /// UCI interface code, whenever a non-reversible move is made in a
1694 /// 'position fen <fen> moves m1 m2 ...' command.  This makes it possible
1695 /// for the program to handle games of arbitrary length, as long as the GUI
1696 /// handles draws by the 50 move rule correctly.
1697
1698 void Position::reset_game_ply() {
1699
1700   gamePly = 0;
1701 }
1702
1703
1704 /// Position::put_piece() puts a piece on the given square of the board,
1705 /// updating the board array, bitboards, and piece counts.
1706
1707 void Position::put_piece(Piece p, Square s) {
1708
1709   Color c = color_of_piece(p);
1710   PieceType pt = type_of_piece(p);
1711
1712   board[s] = p;
1713   index[s] = pieceCount[c][pt];
1714   pieceList[c][pt][index[s]] = s;
1715
1716   set_bit(&(byTypeBB[pt]), s);
1717   set_bit(&(byColorBB[c]), s);
1718   set_bit(&byTypeBB[0], s); // HACK: byTypeBB[0] contains all occupied squares.
1719
1720   pieceCount[c][pt]++;
1721
1722   if (pt == KING)
1723       kingSquare[c] = s;
1724 }
1725
1726
1727 /// Position::allow_oo() gives the given side the right to castle kingside.
1728 /// Used when setting castling rights during parsing of FEN strings.
1729
1730 void Position::allow_oo(Color c) {
1731
1732   st->castleRights |= (1 + int(c));
1733 }
1734
1735
1736 /// Position::allow_ooo() gives the given side the right to castle queenside.
1737 /// Used when setting castling rights during parsing of FEN strings.
1738
1739 void Position::allow_ooo(Color c) {
1740
1741   st->castleRights |= (4 + 4*int(c));
1742 }
1743
1744
1745 /// Position::compute_key() computes the hash key of the position. The hash
1746 /// key is usually updated incrementally as moves are made and unmade, the
1747 /// compute_key() function is only used when a new position is set up, and
1748 /// to verify the correctness of the hash key when running in debug mode.
1749
1750 Key Position::compute_key() const {
1751
1752   Key result = Key(0ULL);
1753
1754   for (Square s = SQ_A1; s <= SQ_H8; s++)
1755       if (square_is_occupied(s))
1756           result ^= zobrist[color_of_piece_on(s)][type_of_piece_on(s)][s];
1757
1758   if (ep_square() != SQ_NONE)
1759       result ^= zobEp[ep_square()];
1760
1761   result ^= zobCastle[st->castleRights];
1762   if (side_to_move() == BLACK)
1763       result ^= zobSideToMove;
1764
1765   return result;
1766 }
1767
1768
1769 /// Position::compute_pawn_key() computes the hash key of the position. The
1770 /// hash key is usually updated incrementally as moves are made and unmade,
1771 /// the compute_pawn_key() function is only used when a new position is set
1772 /// up, and to verify the correctness of the pawn hash key when running in
1773 /// debug mode.
1774
1775 Key Position::compute_pawn_key() const {
1776
1777   Key result = Key(0ULL);
1778   Bitboard b;
1779   Square s;
1780
1781   for (Color c = WHITE; c <= BLACK; c++)
1782   {
1783       b = pawns(c);
1784       while(b)
1785       {
1786           s = pop_1st_bit(&b);
1787           result ^= zobrist[c][PAWN][s];
1788       }
1789   }
1790   return result;
1791 }
1792
1793
1794 /// Position::compute_material_key() computes the hash key of the position.
1795 /// The hash key is usually updated incrementally as moves are made and unmade,
1796 /// the compute_material_key() function is only used when a new position is set
1797 /// up, and to verify the correctness of the material hash key when running in
1798 /// debug mode.
1799
1800 Key Position::compute_material_key() const {
1801
1802   Key result = Key(0ULL);
1803   for (Color c = WHITE; c <= BLACK; c++)
1804       for (PieceType pt = PAWN; pt <= QUEEN; pt++)
1805       {
1806           int count = piece_count(c, pt);
1807           for (int i = 0; i <= count; i++)
1808               result ^= zobMaterial[c][pt][i];
1809       }
1810   return result;
1811 }
1812
1813
1814 /// Position::compute_value() compute the incremental scores for the middle
1815 /// game and the endgame. These functions are used to initialize the incremental
1816 /// scores when a new position is set up, and to verify that the scores are correctly
1817 /// updated by do_move and undo_move when the program is running in debug mode.
1818 template<Position::GamePhase Phase>
1819 Value Position::compute_value() const {
1820
1821   Value result = Value(0);
1822   Bitboard b;
1823   Square s;
1824
1825   for (Color c = WHITE; c <= BLACK; c++)
1826       for (PieceType pt = PAWN; pt <= KING; pt++)
1827       {
1828           b = pieces_of_color_and_type(c, pt);
1829           while(b)
1830           {
1831               s = pop_1st_bit(&b);
1832               assert(piece_on(s) == piece_of_color_and_type(c, pt));
1833               result += pst<Phase>(c, pt, s);
1834           }
1835       }
1836
1837   const Value TempoValue = (Phase == MidGame ? TempoValueMidgame : TempoValueEndgame);
1838   result += (side_to_move() == WHITE)? TempoValue / 2 : -TempoValue / 2;
1839   return result;
1840 }
1841
1842
1843 /// Position::compute_non_pawn_material() computes the total non-pawn middle
1844 /// game material score for the given side. Material scores are updated
1845 /// incrementally during the search, this function is only used while
1846 /// initializing a new Position object.
1847
1848 Value Position::compute_non_pawn_material(Color c) const {
1849
1850   Value result = Value(0);
1851   Square s;
1852
1853   for (PieceType pt = KNIGHT; pt <= QUEEN; pt++)
1854   {
1855       Bitboard b = pieces_of_color_and_type(c, pt);
1856       while(b)
1857       {
1858           s = pop_1st_bit(&b);
1859           assert(piece_on(s) == piece_of_color_and_type(c, pt));
1860           result += piece_value_midgame(pt);
1861       }
1862   }
1863   return result;
1864 }
1865
1866
1867 /// Position::is_mate() returns true or false depending on whether the
1868 /// side to move is checkmated. Note that this function is currently very
1869 /// slow, and shouldn't be used frequently inside the search.
1870
1871 bool Position::is_mate() const {
1872
1873   if (is_check())
1874   {
1875       MovePicker mp = MovePicker(*this, false, MOVE_NONE, EmptySearchStack, Depth(0));
1876       return mp.get_next_move() == MOVE_NONE;
1877   }
1878   return false;
1879 }
1880
1881
1882 /// Position::is_draw() tests whether the position is drawn by material,
1883 /// repetition, or the 50 moves rule. It does not detect stalemates, this
1884 /// must be done by the search.
1885
1886 bool Position::is_draw() const {
1887
1888   // Draw by material?
1889   if (   !pawns()
1890       && (non_pawn_material(WHITE) + non_pawn_material(BLACK) <= BishopValueMidgame))
1891       return true;
1892
1893   // Draw by the 50 moves rule?
1894   if (st->rule50 > 100 || (st->rule50 == 100 && !is_check()))
1895       return true;
1896
1897   // Draw by repetition?
1898   for (int i = 2; i < Min(gamePly, st->rule50); i += 2)
1899       if (history[gamePly - i] == st->key)
1900           return true;
1901
1902   return false;
1903 }
1904
1905
1906 /// Position::has_mate_threat() tests whether a given color has a mate in one
1907 /// from the current position. This function is quite slow, but it doesn't
1908 /// matter, because it is currently only called from PV nodes, which are rare.
1909
1910 bool Position::has_mate_threat(Color c) {
1911
1912   StateInfo st1, st2;
1913   Color stm = side_to_move();
1914
1915   // The following lines are useless and silly, but prevents gcc from
1916   // emitting a stupid warning stating that u1.lastMove and u1.epSquare might
1917   // be used uninitialized.
1918   st1.lastMove = st->lastMove;
1919   st1.epSquare = st->epSquare;
1920
1921   if (is_check())
1922       return false;
1923
1924   // If the input color is not equal to the side to move, do a null move
1925   if (c != stm)
1926       do_null_move(st1);
1927
1928   MoveStack mlist[120];
1929   int count;
1930   bool result = false;
1931
1932   // Generate legal moves
1933   count = generate_legal_moves(*this, mlist);
1934
1935   // Loop through the moves, and see if one of them is mate
1936   for (int i = 0; i < count; i++)
1937   {
1938       do_move(mlist[i].move, st2);
1939       if (is_mate())
1940           result = true;
1941
1942       undo_move(mlist[i].move);
1943   }
1944
1945   // Undo null move, if necessary
1946   if (c != stm)
1947       undo_null_move();
1948
1949   return result;
1950 }
1951
1952
1953 /// Position::init_zobrist() is a static member function which initializes the
1954 /// various arrays used to compute hash keys.
1955
1956 void Position::init_zobrist() {
1957
1958   for (int i = 0; i < 2; i++)
1959       for (int j = 0; j < 8; j++)
1960           for (int k = 0; k < 64; k++)
1961               zobrist[i][j][k] = Key(genrand_int64());
1962
1963   for (int i = 0; i < 64; i++)
1964       zobEp[i] = Key(genrand_int64());
1965
1966   for (int i = 0; i < 16; i++)
1967       zobCastle[i] = genrand_int64();
1968
1969   zobSideToMove = genrand_int64();
1970
1971   for (int i = 0; i < 2; i++)
1972       for (int j = 0; j < 8; j++)
1973           for (int k = 0; k < 16; k++)
1974               zobMaterial[i][j][k] = (k > 0)? Key(genrand_int64()) : Key(0LL);
1975
1976   for (int i = 0; i < 16; i++)
1977       zobMaterial[0][KING][i] = zobMaterial[1][KING][i] = Key(0ULL);
1978 }
1979
1980
1981 /// Position::init_piece_square_tables() initializes the piece square tables.
1982 /// This is a two-step operation:  First, the white halves of the tables are
1983 /// copied from the MgPST[][] and EgPST[][] arrays, with a small random number
1984 /// added to each entry if the "Randomness" UCI parameter is non-zero.
1985 /// Second, the black halves of the tables are initialized by mirroring
1986 /// and changing the sign of the corresponding white scores.
1987
1988 void Position::init_piece_square_tables() {
1989
1990   int r = get_option_value_int("Randomness"), i;
1991   for (Square s = SQ_A1; s <= SQ_H8; s++)
1992       for (Piece p = WP; p <= WK; p++)
1993       {
1994           i = (r == 0)? 0 : (genrand_int32() % (r*2) - r);
1995           MgPieceSquareTable[p][s] = Value(MgPST[p][s] + i);
1996           EgPieceSquareTable[p][s] = Value(EgPST[p][s] + i);
1997       }
1998
1999   for (Square s = SQ_A1; s <= SQ_H8; s++)
2000       for (Piece p = BP; p <= BK; p++)
2001       {
2002           MgPieceSquareTable[p][s] = -MgPieceSquareTable[p-8][flip_square(s)];
2003           EgPieceSquareTable[p][s] = -EgPieceSquareTable[p-8][flip_square(s)];
2004       }
2005 }
2006
2007
2008 /// Position::flipped_copy() makes a copy of the input position, but with
2009 /// the white and black sides reversed. This is only useful for debugging,
2010 /// especially for finding evaluation symmetry bugs.
2011
2012 void Position::flipped_copy(const Position &pos) {
2013
2014   assert(pos.is_ok());
2015
2016   clear();
2017
2018   // Board
2019   for (Square s = SQ_A1; s <= SQ_H8; s++)
2020       if (!pos.square_is_empty(s))
2021           put_piece(Piece(int(pos.piece_on(s)) ^ 8), flip_square(s));
2022
2023   // Side to move
2024   sideToMove = opposite_color(pos.side_to_move());
2025
2026   // Castling rights
2027   if (pos.can_castle_kingside(WHITE))  allow_oo(BLACK);
2028   if (pos.can_castle_queenside(WHITE)) allow_ooo(BLACK);
2029   if (pos.can_castle_kingside(BLACK))  allow_oo(WHITE);
2030   if (pos.can_castle_queenside(BLACK)) allow_ooo(WHITE);
2031
2032   initialKFile  = pos.initialKFile;
2033   initialKRFile = pos.initialKRFile;
2034   initialQRFile = pos.initialQRFile;
2035
2036   for (Square sq = SQ_A1; sq <= SQ_H8; sq++)
2037       castleRightsMask[sq] = ALL_CASTLES;
2038
2039   castleRightsMask[make_square(initialKFile,  RANK_1)] ^= (WHITE_OO | WHITE_OOO);
2040   castleRightsMask[make_square(initialKFile,  RANK_8)] ^= (BLACK_OO | BLACK_OOO);
2041   castleRightsMask[make_square(initialKRFile, RANK_1)] ^=  WHITE_OO;
2042   castleRightsMask[make_square(initialKRFile, RANK_8)] ^=  BLACK_OO;
2043   castleRightsMask[make_square(initialQRFile, RANK_1)] ^=  WHITE_OOO;
2044   castleRightsMask[make_square(initialQRFile, RANK_8)] ^=  BLACK_OOO;
2045
2046   // En passant square
2047   if (pos.st->epSquare != SQ_NONE)
2048       st->epSquare = flip_square(pos.st->epSquare);
2049
2050   // Checkers
2051   find_checkers();
2052
2053   // Hash keys
2054   st->key = compute_key();
2055   st->pawnKey = compute_pawn_key();
2056   st->materialKey = compute_material_key();
2057
2058   // Incremental scores
2059   st->mgValue = compute_value<MidGame>();
2060   st->egValue = compute_value<EndGame>();
2061
2062   // Material
2063   npMaterial[WHITE] = compute_non_pawn_material(WHITE);
2064   npMaterial[BLACK] = compute_non_pawn_material(BLACK);
2065
2066   assert(is_ok());
2067 }
2068
2069
2070 /// Position::is_ok() performs some consitency checks for the position object.
2071 /// This is meant to be helpful when debugging.
2072
2073 bool Position::is_ok(int* failedStep) const {
2074
2075   // What features of the position should be verified?
2076   static const bool debugBitboards = false;
2077   static const bool debugKingCount = false;
2078   static const bool debugKingCapture = false;
2079   static const bool debugCheckerCount = false;
2080   static const bool debugKey = false;
2081   static const bool debugMaterialKey = false;
2082   static const bool debugPawnKey = false;
2083   static const bool debugIncrementalEval = false;
2084   static const bool debugNonPawnMaterial = false;
2085   static const bool debugPieceCounts = false;
2086   static const bool debugPieceList = false;
2087
2088   if (failedStep) *failedStep = 1;
2089
2090   // Side to move OK?
2091   if (!color_is_ok(side_to_move()))
2092       return false;
2093
2094   // Are the king squares in the position correct?
2095   if (failedStep) (*failedStep)++;
2096   if (piece_on(king_square(WHITE)) != WK)
2097       return false;
2098
2099   if (failedStep) (*failedStep)++;
2100   if (piece_on(king_square(BLACK)) != BK)
2101       return false;
2102
2103   // Castle files OK?
2104   if (failedStep) (*failedStep)++;
2105   if (!file_is_ok(initialKRFile))
2106       return false;
2107
2108   if (!file_is_ok(initialQRFile))
2109       return false;
2110
2111   // Do both sides have exactly one king?
2112   if (failedStep) (*failedStep)++;
2113   if (debugKingCount)
2114   {
2115       int kingCount[2] = {0, 0};
2116       for (Square s = SQ_A1; s <= SQ_H8; s++)
2117           if (type_of_piece_on(s) == KING)
2118               kingCount[color_of_piece_on(s)]++;
2119
2120       if (kingCount[0] != 1 || kingCount[1] != 1)
2121           return false;
2122   }
2123
2124   // Can the side to move capture the opponent's king?
2125   if (failedStep) (*failedStep)++;
2126   if (debugKingCapture)
2127   {
2128       Color us = side_to_move();
2129       Color them = opposite_color(us);
2130       Square ksq = king_square(them);
2131       if (square_is_attacked(ksq, us))
2132           return false;
2133   }
2134
2135   // Is there more than 2 checkers?
2136   if (failedStep) (*failedStep)++;
2137   if (debugCheckerCount && count_1s(st->checkersBB) > 2)
2138       return false;
2139
2140   // Bitboards OK?
2141   if (failedStep) (*failedStep)++;
2142   if (debugBitboards)
2143   {
2144       // The intersection of the white and black pieces must be empty
2145       if ((pieces_of_color(WHITE) & pieces_of_color(BLACK)) != EmptyBoardBB)
2146           return false;
2147
2148       // The union of the white and black pieces must be equal to all
2149       // occupied squares
2150       if ((pieces_of_color(WHITE) | pieces_of_color(BLACK)) != occupied_squares())
2151           return false;
2152
2153       // Separate piece type bitboards must have empty intersections
2154       for (PieceType p1 = PAWN; p1 <= KING; p1++)
2155           for (PieceType p2 = PAWN; p2 <= KING; p2++)
2156               if (p1 != p2 && (pieces_of_type(p1) & pieces_of_type(p2)))
2157                   return false;
2158   }
2159
2160   // En passant square OK?
2161   if (failedStep) (*failedStep)++;
2162   if (ep_square() != SQ_NONE)
2163   {
2164       // The en passant square must be on rank 6, from the point of view of the
2165       // side to move.
2166       if (relative_rank(side_to_move(), ep_square()) != RANK_6)
2167           return false;
2168   }
2169
2170   // Hash key OK?
2171   if (failedStep) (*failedStep)++;
2172   if (debugKey && st->key != compute_key())
2173       return false;
2174
2175   // Pawn hash key OK?
2176   if (failedStep) (*failedStep)++;
2177   if (debugPawnKey && st->pawnKey != compute_pawn_key())
2178       return false;
2179
2180   // Material hash key OK?
2181   if (failedStep) (*failedStep)++;
2182   if (debugMaterialKey && st->materialKey != compute_material_key())
2183       return false;
2184
2185   // Incremental eval OK?
2186   if (failedStep) (*failedStep)++;
2187   if (debugIncrementalEval)
2188   {
2189       if (st->mgValue != compute_value<MidGame>())
2190           return false;
2191
2192       if (st->egValue != compute_value<EndGame>())
2193           return false;
2194   }
2195
2196   // Non-pawn material OK?
2197   if (failedStep) (*failedStep)++;
2198   if (debugNonPawnMaterial)
2199   {
2200       if (npMaterial[WHITE] != compute_non_pawn_material(WHITE))
2201           return false;
2202
2203       if (npMaterial[BLACK] != compute_non_pawn_material(BLACK))
2204           return false;
2205   }
2206
2207   // Piece counts OK?
2208   if (failedStep) (*failedStep)++;
2209   if (debugPieceCounts)
2210       for (Color c = WHITE; c <= BLACK; c++)
2211           for (PieceType pt = PAWN; pt <= KING; pt++)
2212               if (pieceCount[c][pt] != count_1s(pieces_of_color_and_type(c, pt)))
2213                   return false;
2214
2215   if (failedStep) (*failedStep)++;
2216   if (debugPieceList)
2217   {
2218       for(Color c = WHITE; c <= BLACK; c++)
2219           for(PieceType pt = PAWN; pt <= KING; pt++)
2220               for(int i = 0; i < pieceCount[c][pt]; i++)
2221               {
2222                   if (piece_on(piece_list(c, pt, i)) != piece_of_color_and_type(c, pt))
2223                       return false;
2224
2225                   if (index[piece_list(c, pt, i)] != i)
2226                       return false;
2227               }
2228   }
2229   if (failedStep) *failedStep = 0;
2230   return true;
2231 }