chess:programming:pawn_hash_table
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
chess:programming:pawn_hash_table [2021/10/12 12:42] – peter | chess:programming:pawn_hash_table [2022/01/06 21:54] (current) – peter | ||
---|---|---|---|
Line 56: | Line 56: | ||
} | } | ||
</ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | 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.1634042579.txt.gz · Last modified: 2021/10/12 12:42 by peter