Othello is a strategy board game created in 1971 based on Reversi game. This game is an ai-ai battle only (alphabeta or negamax algorithm)
Go to file
2021-07-22 12:59:08 +02:00
Rapport deleted useless files 2021-03-30 11:53:59 +02:00
src fixed complexity 2021-03-01 08:21:44 +01:00
.gitignore fixed many bugs + implemented negamax(not tested) 2021-02-20 18:54:38 +01:00
othello_rapport_2.pdf mise à jour du rapport 2021-02-28 11:42:04 +01:00
readme.md translated readme 2021-07-22 12:59:08 +02:00
statsj1.txt fixed previousSituation 2021-02-28 20:32:31 +01:00
statsj2.txt fixed previousSituation 2021-02-28 20:32:31 +01:00

Infection game - Othello

Contributors

Antonin Boyon

Quentin Legot

Arthur Page

How to launch the game

After you compiled and placed files in an jar archives (using jar command or ide):

java -jar othello.jar depthP1 depthP2 alphabeta

depthP1 and depthP2 correspond to an integer indicating to the decision algorithim how deep to calculate and alphabeta correspond to a boolean indicating to the program if you wish to use alphabeta algorithm (True or true values) or negamax algorithm ( all others values than true).

If depthP1 or depthP2 aren't correct, the program will use default settings (4, 4, true).

If you doesn't want to use the logger, change the value MainStats to Main in META_INF file.