init
This commit is contained in:
commit
0de67fd423
13 changed files with 1263 additions and 0 deletions
20
README.md
Normal file
20
README.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Othello
|
||||
|
||||
## Project Structure
|
||||
|
||||
```
|
||||
├── iagorithms <-- contains expert system AI library
|
||||
│ └── ...
|
||||
├── othello <-- contains main binary and library for Othello
|
||||
│ └── ...
|
||||
└── README.md <-- you are here
|
||||
```
|
||||
|
||||
## Game Representation
|
||||
|
||||
The game state is represented by what's known as a
|
||||
[BitBoard](https://www.chessprogramming.org/Bitboards). I knew about these
|
||||
already from researching Chess programming in the past.
|
||||
|
||||
This does mean that when calling upon iagorithms' it will need to _explode_
|
||||
the bitboard into a format that can be pattern matched on.
|
||||
Loading…
Add table
Add a link
Reference in a new issue