Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 |
+-----------------+--------------------------+
```