attack.c: sq_is_attacked() and is_in_check()

This commit is contained in:
2024-03-26 17:34:11 +01:00
parent 70d6c23c00
commit 7637bdad10
5 changed files with 83 additions and 21 deletions

View File

@@ -190,8 +190,6 @@ void bitboard_init(void)
*/
bitboard_t bb_knight_moves(bitboard_t notmine, square_t sq)
{
//bitboard_print("bb_knight_move mask", bb_knight[sq]);
//bitboard_print("bb_knight_move res", bb_knight[sq] & notmine);
return bb_knight[sq] & notmine;
}