mirror of
https://github.com/sockspls/badfish
synced 2025-05-01 09:13:08 +00:00
Micro optimize generate_piece_checks() take 2
Add some missing bits of this patch. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
f98385e129
commit
24485c96ec
1 changed files with 7 additions and 3 deletions
|
@ -73,9 +73,8 @@ namespace {
|
||||||
return Us == WHITE ? p << 9 : p >> 7;
|
return Us == WHITE ? p << 9 : p >> 7;
|
||||||
else if (Direction == DELTA_NW)
|
else if (Direction == DELTA_NW)
|
||||||
return Us == WHITE ? p << 7 : p >> 9;
|
return Us == WHITE ? p << 7 : p >> 9;
|
||||||
|
else
|
||||||
assert(false);
|
return p;
|
||||||
return p;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Template generate_piece_checks() with specializations
|
// Template generate_piece_checks() with specializations
|
||||||
|
@ -821,6 +820,11 @@ namespace {
|
||||||
while (b)
|
while (b)
|
||||||
{
|
{
|
||||||
Square from = pop_1st_bit(&b);
|
Square from = pop_1st_bit(&b);
|
||||||
|
if ( (Piece == QUEEN && !(QueenPseudoAttacks[from] & checkSqs))
|
||||||
|
|| (Piece == ROOK && !(RookPseudoAttacks[from] & checkSqs))
|
||||||
|
|| (Piece == BISHOP && !(BishopPseudoAttacks[from] & checkSqs)))
|
||||||
|
continue;
|
||||||
|
|
||||||
Bitboard bb = pos.piece_attacks<Piece>(from) & checkSqs;
|
Bitboard bb = pos.piece_attacks<Piece>(from) & checkSqs;
|
||||||
SERIALIZE_MOVES(bb);
|
SERIALIZE_MOVES(bb);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue