chess:programming:magic_bitboards
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
chess:programming:magic_bitboards [2021/10/27 14:38] – created peter | chess:programming:magic_bitboards [2021/10/30 13:12] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Chess - Programming - Magic BitBoards ====== | ====== Chess - Programming - Magic BitBoards ====== | ||
- | ===== Magic BitBoard Principle ===== | + | Magic BitBoards are an efficient way to take a position and obtain the legal moves for a sliding piece. |
- | The basic principle is: | + | The occupancy bits for a specific piece on a specific square can be multiplied against a " |
- | | + | ---- |
- | | + | |
- | | + | |
- | - 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: | + | [[Chess:Programming: |
- | < | + | [[Chess: |
- | I = ((T & O) * M) >> S | + | |
- | </ | + | |
- | <WRAP info> | ||
- | **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). | + | ===== References ===== |
- | * So, a more accurate formula would be: < | + | |
- | I = ((T[P] & O) * M[P]) >> S[P] | + | |
- | </ | + | |
- | * reachable_squares | + | |
- | 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. | + | https:// |
- | * 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. | + | https://www.stmintz.com/ccc/ |
- | + | ||
- | * The ' | + | |
- | * 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 ' | + | |
- | * Most of the time, they are built by running an extensive brute-force search. | + | |
- | + | ||
- | </WRAP> | + | |
chess/programming/magic_bitboards.1635345512.txt.gz · Last modified: 2021/10/27 14:38 by peter