X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fbitboard.cpp;h=e23e5b6bbb56447c404dccfaaf53190ed67ebe92;hb=94a67c49b0238200bbd4b167d067f067ff4aad30;hp=063204c5020f7ec2f54a5104ee705a618068fc4b;hpb=52129955637610488936648066f80a4515f6ce57;p=stockfish diff --git a/src/bitboard.cpp b/src/bitboard.cpp index 063204c5..e23e5b6b 100644 --- a/src/bitboard.cpp +++ b/src/bitboard.cpp @@ -163,7 +163,10 @@ const int RShift[64] = { #endif // defined(IS_64BIT) -const Bitboard SquaresByColorBB[2] = { BlackSquaresBB, WhiteSquaresBB }; +const Bitboard LightSquaresBB = 0x55AA55AA55AA55AAULL; +const Bitboard DarkSquaresBB = 0xAA55AA55AA55AA55ULL; + +const Bitboard SquaresByColorBB[2] = { DarkSquaresBB, LightSquaresBB }; const Bitboard FileBB[8] = { FileABB, FileBBB, FileCBB, FileDBB, FileEBB, FileFBB, FileGBB, FileHBB @@ -400,8 +403,8 @@ namespace { AttackSpanMask[c][s] = in_front_bb(c, s) & neighboring_files_bb(s); } - for (Bitboard b = 0ULL; b < 256ULL; b++) - BitCount8Bit[b] = (uint8_t)count_1s(b); + for (Bitboard b = 0; b < 256; b++) + BitCount8Bit[b] = (uint8_t)count_1s(b); } int remove_bit_8(int i) { return ((i & ~15) >> 1) | (i & 7); } @@ -491,7 +494,7 @@ namespace { Bitboard index_to_bitboard(int index, Bitboard mask) { Bitboard result = 0ULL; - int bits = count_1s(mask); + int bits = count_1s(mask); for (int i = 0; i < bits; i++) { @@ -508,7 +511,7 @@ namespace { for (int i = 0, index = 0; i < 64; i++) { attackIndex[i] = index; - mask[i] = sliding_attacks(i, 0ULL, 4, deltas, 1, 6, 1, 6); + mask[i] = sliding_attacks(i, 0, 4, deltas, 1, 6, 1, 6); #if defined(IS_64BIT) int j = (1 << (64 - shift[i]));