rudzen / ChessLib

C# chess library containing a complete data structure and move generation.
MIT License
81 stars 23 forks source link

Fix Polyglot implementation #37

Closed tuxmania87 closed 2 years ago

tuxmania87 commented 3 years ago

Fixing issues mentioned in #36

its not nice by any means but it works. I am using it in a bot I created with this framework and it works quite well.

rudzen commented 3 years ago

I'll take a closer look when I got time to do so (quite busy with work atm) - but looks fine at first glance 👍 Some of the ideas you added to the PG implementation is logically identical to some of the changes I had already! Note that there are functionality to easily iterate over pieces on the board - either by IEnumerable or by popping bits. (PR #38)

Cheers!