https://github.com/aashrafh/algobrain
Classic bit-boards VS Magic bit-board
https://github.com/aashrafh/algobrain
bitboard chess chess-engine magic-bitboards
Last synced: about 1 year ago
JSON representation
Classic bit-boards VS Magic bit-board
- Host: GitHub
- URL: https://github.com/aashrafh/algobrain
- Owner: aashrafh
- Created: 2019-12-13T21:33:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-14T16:10:27.000Z (over 6 years ago)
- Last Synced: 2025-02-06T11:54:03.293Z (over 1 year ago)
- Topics: bitboard, chess, chess-engine, magic-bitboards
- Language: C++
- Homepage:
- Size: 395 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AlgoBrain
A research project in college supervised by Undergraduates Research Forum at Faculty of Engineering, Cairo University.
## Research Area
Computer Chess
## Details
Our problem is that how to obtain the attack set of the next move for sliding pieces (queen, bishop and rock) in
computer chess engines. But why sliding pieces? The answer is that sliding pieces have so
many combinations to be considered. In this paper we will make a comparison between the classical
approach to obtain that and the magic bitboard approach and we will provide the reader with C++ implementation for the magic
approach as we aim to provide programmers who write chess engines a discussion of one of the fastest and most versatile movebitboard generators for individual sliding pieces
## Implementation
We found a library already implemented for the magical approach here and we added the implementation for the classical approach in our repo to make a comparison between them.
## Future Work
* Providing the assembly code for both classical and magical approach.
* Providing the exact time for both classical and magical approach.