Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevehjohn/chessalpha
Beginners attempt at a Chess engine.
https://github.com/stevehjohn/chessalpha
chess csharp dotnet
Last synced: 19 days ago
JSON representation
Beginners attempt at a Chess engine.
- Host: GitHub
- URL: https://github.com/stevehjohn/chessalpha
- Owner: stevehjohn
- Created: 2019-04-06T23:26:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-15T18:02:27.000Z (about 1 month ago)
- Last Synced: 2024-11-30T04:03:18.808Z (23 days ago)
- Topics: chess, csharp, dotnet
- Language: C#
- Homepage:
- Size: 1.22 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chess
An attempt at a Chess engine. Nothing genius, just for fun.
# Mental Notes (Just to help me)
Black is North on the board so to speak.
# TODO:
- En-passant
- Castling
- Pawn promotions```
+-----------------|--------------------------+
| Number of moves | Number of possible games |
| 1 | 20 |
| 2 | 400 |
| 3 | 8,902 |
| 4 | 197,281 |
| 5 | 4,865,609 |
| 6 | 119,060,324 |
| 7 | 3,195,901,860 |
| 8 | 84,998,978,956 |
| 9 | 2,439,530,234,167 |
| 10 | 69,352,859,712,417 |
+-----------------+--------------------------+
```