Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevehjohn/chess
Beginners attempt at a Chess engine.
https://github.com/stevehjohn/chess
chess csharp dotnet
Last synced: about 4 hours ago
JSON representation
Beginners attempt at a Chess engine.
- Host: GitHub
- URL: https://github.com/stevehjohn/chess
- Owner: stevehjohn
- Created: 2019-04-06T23:26:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-05T15:26:35.000Z (3 months ago)
- Last Synced: 2024-08-05T18:12:21.661Z (3 months ago)
- Topics: chess, csharp, dotnet
- Language: C#
- Homepage:
- Size: 1.17 MB
- Stars: 1
- Watchers: 2
- 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 |
+-----------------+--------------------------+
```