From 362d7f214d0f1067e4e50d83d3fef9604c6732df Mon Sep 17 00:00:00 2001 From: anon Date: Sat, 29 Jun 2024 00:29:53 +0200 Subject: [PATCH] +readme --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7e67616 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# Chad Game Theory Tournament + +All is based on the Prisoner's dilemma. +The tournament consists of consecutive games which consists of matches. +In each match there are 2 players. +Players must make a binary choice between `COOPERATE` and `CONFLICT`. + +Below is a table of all possible out comes: + +| Players | Action | Reward | +| :------: | :-------: | :----: | +| Player 1 | COOPERATE | 3 | +| Player 2 | COOPERATE | 3 | +| :------: | :-------: | :----: | +| Player 1 | COOPERATE | 0 | +| Player 2 | CONFLICT | 5 | +| :------: | :-------: | :----: | +| Player 1 | CONFLICT | 5 | +| Player 2 | COOPERATE | 0 | +| :------: | :-------: | :----: | +| Player 1 | CONFLICT | 1 | +| Player 2 | CONFLICT | 1 | + +The player with the most points by the end of the Tournament wins. + +To play, submit a header file with your subclass implementation of `Player`. +Comments will further aid you.