|
|
|
|
|
by Anotheroneagain
885 days ago
|
|
Even something very simple like listing piece positions in a given order should result in less. Let's say King, Queen, Rooks, Bishops, Knights, pawns. Give a position for each for both players in 6×32 (192) bits. If a piece is taken, repeat the position of the king. If a pawn is promoted (and there are more than than the starting number of the piece it was promoted into) repeat the position of the piece it was promoted into. 1 bit for whose move it is. (193b) 3 bits for the en-passant column. (196b) 50 move rule (I suppose 7 bits, as you need it in ply?) 203b.
Then the data for the extra pieces, in the order encountered if any. ?×6b (how many are possible? There are 16 pawns, but I suppose it isn't possible to promote all) |
|