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

https://github.com/y1r/reversi

reversi/othello game in c++.
https://github.com/y1r/reversi

cpp reversi

Last synced: 12 months ago
JSON representation

reversi/othello game in c++.

Awesome Lists containing this project

README

          

# Reversi
Implementation of Reversi/Othello Game in C++14.

## Implemented Algorithms
- Mini-Max Method
- Alpha-Beta Method
- User (stdin)
- Random (select first-placeable disk)

## How to Use
```sh
git clone https://github.com/y1r/reversi
cd reversi
cmake .
make
./reversi -a 8 -m 7
# This means "run reversi with alpha-beta(depth=8) and MiniMax(depth=7)"
```

```
./reversi [BLACK] [WHITE]
[BLACK|WHITE]
-a [search_depth]; alphabeta-method
-m [search_depth]; minimax-method
-u; user
-r; random
```

## LICENSE
Apache License Version 2.0