Added functionality to execute a turn

This commit is contained in:
2023-02-01 00:12:03 +01:00
parent 6899b759cf
commit 7cacd0ef64
3 changed files with 1551 additions and 1168 deletions

View File

@ -42,6 +42,7 @@ repos:
args: [--autofix] args: [--autofix]
- id: pretty-format-toml - id: pretty-format-toml
args: [--autofix] args: [--autofix]
exclude: ((pyproject.toml)|(poetry.lock)$)
- id: pretty-format-yaml - id: pretty-format-yaml
args: [--autofix] args: [--autofix]
exclude: (docker-compose.yaml$) exclude: (docker-compose.yaml$)

3442
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,24 +1,24 @@
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.poetry] [tool.poetry]
name = "reversi"
version = "0.1.0"
description = ""
authors = ["Philipp Horstenkamp <philipp@horstenkamp.de>"] authors = ["Philipp Horstenkamp <philipp@horstenkamp.de>"]
description = ""
name = "reversi"
readme = "README.md" readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "3.10.*" ipytest = "^0.13.0"
jupyter = "^1.0.0" jupyter = "^1.0.0"
matplotlib = "^3.6.3"
numpy = "^1.24.1" numpy = "^1.24.1"
pytest = "^7.2.1" pytest = "^7.2.1"
ipytest = "^0.13.0" python = "3.10.*"
scipy = "^1.10.0" scipy = "^1.10.0"
tqdm = "^4.64.1" tqdm = "^4.64.1"
[tool.poetry.group.build.dependencies] [tool.poetry.group.build.dependencies]
blackcellmagic = "^0.0.3" blackcellmagic = "^0.0.3"
pre-commit = "^3.0.2" pre-commit = "^3.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"