X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitboard.cpp;h=b9071ea8bab0beb0323e1b597e27097c6ce7a732;hp=0e31d5d69adccca37458c0ca8b9ddf9b9d44d49f;hb=bc4f3155ae3937d32a3ebaae77ee4f7be355aa60;hpb=3dfff5bdae8447fad085558d3f3a729e52963f7a diff --git a/src/bitboard.cpp b/src/bitboard.cpp index 0e31d5d6..b9071ea8 100644 --- a/src/bitboard.cpp +++ b/src/bitboard.cpp @@ -79,7 +79,7 @@ void print_bitboard(Bitboard b) { { std::cout << "+---+---+---+---+---+---+---+---+" << '\n'; for (File f = FILE_A; f <= FILE_H; f++) - std::cout << "| " << (bit_is_set(b, make_square(f, r)) ? 'X' : ' ') << ' '; + std::cout << "| " << (bit_is_set(b, make_square(f, r)) ? "X " : " "); std::cout << "|\n"; } @@ -255,13 +255,20 @@ namespace { Bitboard submask(Bitboard mask, int key) { - Bitboard subMask = 0; - int bitNum = -1; + Bitboard b, subMask = 0; + int bitProbe = 1; // Extract an unique submask out of a mask according to the given key - for (Square s = SQ_A1; s <= SQ_H8; s++) - if (bit_is_set(mask, s) && bit_is_set(key, Square(++bitNum))) - set_bit(&subMask, s); + while (mask) + { + b = mask & -mask; + mask ^= b; + + if (key & bitProbe) + subMask |= b; + + bitProbe <<= 1; + } return subMask; } @@ -289,20 +296,21 @@ namespace { return attacks; } - template Bitboard pick_magic(Bitboard mask, RKISS& rk, int booster) { Bitboard magic; - // Advance PRNG state of a quantity known to be the optimal to - // quickly retrieve all the magics. - for (int i = 0; i < booster; i++) - rk.rand(); + // Values s1 and s2 are used to rotate the candidate magic of + // a quantity known to be the optimal to quickly find the magics. + int s1 = booster & 63, s2 = (booster >> 6) & 63; while (true) { - magic = rk.rand() & rk.rand(); - magic &= Is64 ? rk.rand() : (rk.rand() | rk.rand()); + magic = rk.rand(); + magic = (magic >> s1) | (magic << (64 - s1)); + magic &= rk.rand(); + magic = (magic >> s2) | (magic << (64 - s2)); + magic &= rk.rand(); if (BitCount8Bit[(mask * magic) >> 56] >= 6) return magic; @@ -312,8 +320,8 @@ namespace { void init_sliding_attacks(Bitboard magic[], Bitboard* attack[], Bitboard attTable[], Bitboard mask[], int shift[], Square delta[]) { - const int MagicBoosters[][8] = { { 55, 11, 17, 2, 39, 3, 31, 44 }, - { 26, 21, 21, 32, 31, 9, 5, 11 } }; + const int MagicBoosters[][8] = { { 3191, 2184, 1310, 3618, 2091, 1308, 2452, 3996 }, + { 1059, 3608, 605, 3234, 3326, 38, 2029, 3043 } }; RKISS rk; Bitboard occupancy[4096], reference[4096], excluded; int key, maxKey, index, booster, offset = 0; @@ -324,9 +332,9 @@ namespace { attack[s] = &attTable[offset]; mask[s] = sliding_attacks(s, EmptyBoardBB, delta, excluded); - shift[s] = (CpuIs64Bit ? 64 : 32) - count_1s(mask[s]); + shift[s] = (CpuIs64Bit ? 64 : 32) - count_1s(mask[s]); - maxKey = 1 << count_1s(mask[s]); + maxKey = 1 << count_1s(mask[s]); offset += maxKey; booster = MagicBoosters[CpuIs64Bit][square_rank(s)]; @@ -339,7 +347,7 @@ namespace { // Then find a possible magic and the corresponding attacks do { - magic[s] = pick_magic(mask[s], rk, booster); + magic[s] = pick_magic(mask[s], rk, booster); memset(attack[s], 0, maxKey * sizeof(Bitboard)); for (key = 0; key < maxKey; key++)