Replace piece bitboards to piece_type ones #23
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Instead of having 7 bitboards per color, use 7 bitboards + 2 per color.
For example, instead of:
We could have:
Issue: currently,
bb[0]
is for all pieces in the color. This one would be lost, except if indexes are shifted.The point of doing so is everything could be flipped after each move (bitboards, board), so that move_gen, eval, etc... would be simplified (monochrome).