chess:programming:magic_bitboards

This is an old revision of the document!


Chess - Programming - Magic BitBoards

Magic BitBoard Principle

The basic principle is:

  1. Isolate the squares that a given piece may reach from a given position, without taking board occupancy into account. This gives us a 64-bit bitmask of potential target squares. Let's call it T (for Target).
  2. Perform a bitwise AND of T with the bitmask of occupied squares on the board. Let's call the latter O (for Occupied).
  3. Multiply the result by a magic value M and shift the result to the right by a magic amount S. This gives us I (for Index).
  4. Use I as an index in a lookup table to retrieve the bitmask of squares that can actually be reached with this configuration.

To sum it up:

I = ((T & O) * M) >> S

NOTE:

  • Reachable_squares = lookup[I]
  • T, M, S and lookup are all pre-computed and depend on the position of the piece (P = 0 … 63).
  • So, a more accurate formula would be:
    I = ((T[P] & O) * M[P]) >> S[P]
    • reachable_squares = lookup[P][I]

The purpose of step #3 is to transform the 64-bit value T & O into a much smaller one, so that a table of a reasonable size can be used.

  • What we get by computing ((T & O) * M) » S is essentially a random sequence of bits, and we want to map each of these sequences to a unique bitmask of reachable target squares.
  • The 'magic' part in this algorithm is to determine the M and S values that will produce a collision-free lookup table as small as possible.
  • This is a Perfect Hash Function problem.
  • However, no perfect hashing has been found for magic bitboards so far, which means that the lookup tables in use typically contain many unused 'holes'.
  • Most of the time, they are built by running an extensive brute-force search.
chess/programming/magic_bitboards.1635345512.txt.gz · Last modified: 2021/10/27 14:38 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki