X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitboard.cpp;h=f014fe1939b6d4da4b13c5eafe1d286b8ae3312a;hp=cae7e0cae32e2fedf633af09730b631661517252;hb=ecc100d1bb59609eb6e4307d721ce3452bedb948;hpb=1f1ef0897c986ad5e761dd04a223ae9af6048b09 diff --git a/src/bitboard.cpp b/src/bitboard.cpp index cae7e0ca..f014fe19 100644 --- a/src/bitboard.cpp +++ b/src/bitboard.cpp @@ -228,7 +228,7 @@ Bitboard BetweenBB[64][64]; Bitboard SquaresInFrontMask[2][64]; Bitboard PassedPawnMask[2][64]; -Bitboard OutpostMask[2][64]; +Bitboard AttackSpanMask[2][64]; Bitboard BishopPseudoAttacks[64]; Bitboard RookPseudoAttacks[64]; @@ -430,7 +430,7 @@ namespace { { SquaresInFrontMask[c][s] = in_front_bb(c, s) & file_bb(s); PassedPawnMask[c][s] = in_front_bb(c, s) & this_and_neighboring_files_bb(s); - OutpostMask[c][s] = in_front_bb(c, s) & neighboring_files_bb(s); + AttackSpanMask[c][s] = in_front_bb(c, s) & neighboring_files_bb(s); } for (Bitboard b = 0ULL; b < 256ULL; b++)