From 13576fd1e950268f263de4a4818252b9d7f9b200 Mon Sep 17 00:00:00 2001 From: protago Date: Fri, 21 Jan 2022 23:23:47 +0100 Subject: [PATCH] Fix README Fix README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 317b273..15d398e 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,14 @@

tictactoe

  -The purpose of what's above, despite fun, was to facilitate the testing of bots prototypes playability -by benchmaking them with [searchable games](https://en.wikipedia.org/wiki/Game_theory) algorithms. The following have been accomplished: - - [x] `playground` / `tournament` modes providing respectively touch'n'feel / at-scale-simulated gameplay(s); +The purpose of what's above, despite fun, was to facilitate the testing of bots prototypes performance -by benchmarking them with [searchable](https://en.wikipedia.org/wiki/Game_theory) algorithms. The following have been accomplished: + - [x] `playground` / `tournament` modes providing respectively touch'n'feel / at-scale-simulated gameplay; - [x] referential bots implementations i.e.: `minmax`, `debuts`, `random`, `search` (and `human`xd); - [ ] from-scratch AI-based bots prototypes (waiting for a dose of spare time...) - [x] transparent API exposed to interfere with: [BoardAPI](https://github.com/protago90/tictactoe-ring/blob/main/tictactoe/board.py#L8) and [PlayerAPI](https://github.com/protago90/tictactoe-ring/blob/main/tictactoe/player.py#L10); - - [x] twofold UI, via: shell CLI (see `demo.gif`) or clickable web GUI (once hosted [here](https://share.streamlit.io/protago90/tictactoe-ring/main/streamlit.py) ). + - [x] twofold UI, via: shell CLI (see `demo.gif`) or clickable web GUI (once hosted [here](https://share.streamlit.io/protago90/tictactoe-ring/main/streamgui.py) ). -

streamlit

  +

streamlit

  [TicTacToe](https://en.wikipedia.org/wiki/Tic-tac-toe) is deterministic zero-sum game with `19683` possible states and `255168` gameplayes. See complete map of game tree depth depiceted by [XKCD](https://xkcd.com/832/) .