X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.cpp;h=4160822b1de5602fdc15ff1dc5ad0f727eb445da;hp=abde14593bbf833914be4651387e867770262744;hb=29be28e1a24898cec64470332740eaa54893b7a4;hpb=e7939f450fe5d249bfc9893212dbea1f1829250a;ds=sidebyside diff --git a/src/position.cpp b/src/position.cpp index abde1459..4160822b 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -349,7 +349,6 @@ void Position::print(Move move) const { /// king) pieces for the given color. Or, when template parameter FindPinned is /// false, the function return the pieces of the given color candidate for a /// discovery check against the enemy king. - template Bitboard Position::hidden_checkers() const { @@ -373,24 +372,10 @@ Bitboard Position::hidden_checkers() const { return result; } +// Explicit template instantiations +template Bitboard Position::hidden_checkers() const; +template Bitboard Position::hidden_checkers() const; -/// Position:pinned_pieces() returns a bitboard of all pinned (against the -/// king) pieces for the side to move. - -Bitboard Position::pinned_pieces() const { - - return hidden_checkers(); -} - - -/// Position:discovered_check_candidates() returns a bitboard containing all -/// pieces for the side to move which are candidates for giving a discovered -/// check. - -Bitboard Position::discovered_check_candidates() const { - - return hidden_checkers(); -} /// Position::attackers_to() computes a bitboard of all pieces which attacks a /// given square. Slider attacks use occ bitboard as occupancy. @@ -405,6 +390,7 @@ Bitboard Position::attackers_to(Square s, Bitboard occ) const { | (attacks_from(s) & pieces(KING)); } + /// Position::attacks_from() computes a bitboard of all attacks of a given piece /// put in a given square. Slider attacks use occ bitboard as occupancy. @@ -503,8 +489,8 @@ bool Position::pl_move_is_legal(Move m, Bitboard pinned) const { /// Position::move_is_legal() takes a random move and tests whether the move -/// is legal. This version is not very fast and should be used only -/// in non time-critical paths. +/// is legal. This version is not very fast and should be used only in non +/// time-critical paths. bool Position::move_is_legal(const Move m) const {