chess:programming:pawn_hash_table
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
chess:programming:pawn_hash_table [2021/10/12 12:39] – created peter | chess:programming:pawn_hash_table [2022/01/06 21:54] (current) – peter | ||
---|---|---|---|
Line 35: | Line 35: | ||
This can be further reduced by mirroring the board, considering symmetric positions or detecting illegal positions. | This can be further reduced by mirroring the board, considering symmetric positions or detecting illegal positions. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Potential Pawn Hash Table ===== | ||
+ | |||
+ | mod(49981), which is an appropriate size for a pawn hash table: | ||
+ | |||
+ | <code cpp> | ||
+ | unsigned int mod49981 (unsigned __int64 a) | ||
+ | { | ||
+ | // (2**64 + 49981 - 1) / 49981 | ||
+ | // is not exact divisible without remainder | ||
+ | // 369075130023601.0003001140433 ~ 0x14FAC00053EB1 | ||
+ | unsigned __int64 m = (0x00014FAC00053EB1 * (a >> 32) | ||
+ | + 0x00014FAC * (a & 0xffffffff)); | ||
+ | int modulus = (int)(a - (__int64)(m>> | ||
+ | if ( modulus < 0 ) // correct negative results | ||
+ | modulus += 49981; // due to the remainder of 0.0003 | ||
+ | return (unsigned int) modulus; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | Information to store include: | ||
+ | |||
+ | * Color information. | ||
+ | * It might be useful to hash the king positions, | ||
+ | |||
+ | Without king positions in pseudo-C | ||
+ | |||
+ | < | ||
+ | hash_t RandomIndex[64][2]; | ||
+ | |||
+ | PawnHashIndex = 0; | ||
+ | for (pos = A1; pos <= H8; pos++) | ||
+ | if (figure[pos] == pawn) | ||
+ | PawnHashIndex ^= RandomIndex[pos][color[pos]]; | ||
+ | </ | ||
+ | |||
+ | Probably do not do this after every move. | ||
+ | |||
+ | If you move a pawn , you can update the PawnHashIndex by | ||
+ | |||
+ | < | ||
+ | // Update the pawn hash for " | ||
+ | PawnHashIndex ^= RandomIndex[from][side]; | ||
+ | PawnHashIndex ^= RandomIndex[to][side]; | ||
+ | </ | ||
+ | |||
+ | Similar code is needed for captures of a pawn and pawn promotions. | ||
+ |
chess/programming/pawn_hash_table.1634042341.txt.gz · Last modified: 2021/10/12 12:39 by peter