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++.
- Host: GitHub
- URL: https://github.com/y1r/reversi
- Owner: y1r
- License: apache-2.0
- Created: 2017-12-11T09:01:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-18T07:46:15.000Z (over 8 years ago)
- Last Synced: 2025-03-02T17:48:41.649Z (over 1 year ago)
- Topics: cpp, reversi
- Language: C++
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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