2021-07-22 12:59:08 +02:00
# Infection game - Othello
2021-03-30 11:07:22 +02:00
2021-07-22 12:59:08 +02:00
## Contributors
2021-03-30 11:07:22 +02:00
2021-03-30 15:22:41 +02:00
[Antonin Boyon ](https://github.com/Detextra )
2021-03-30 11:07:22 +02:00
[Quentin Legot ](https://github.com/SexiestCHiba )
[Arthur Page ](https://github.com/Arthur7770 )
2021-02-28 11:43:56 +01:00
2021-07-22 12:59:08 +02:00
## How to launch the game
2021-02-28 11:43:56 +01:00
2021-07-22 12:59:08 +02:00
After you compiled and placed files in an jar archives (using jar command or ide):
2021-02-28 11:43:56 +01:00
2021-07-22 12:59:08 +02:00
`java -jar othello.jar depthP1 depthP2 alphabeta`
2021-02-28 11:43:56 +01:00
2021-07-22 12:59:08 +02:00
`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).
2021-02-28 11:43:56 +01:00
2021-07-22 12:59:08 +02:00
If `depthP1` or `depthP2` aren't correct, the program will use default settings (4, 4, true).
2021-02-28 11:43:56 +01:00
2021-07-22 12:59:08 +02:00
If you doesn't want to use the logger, change the value `MainStats` to `Main` in META_INF file.