├── .gitignore ├── LICENSE ├── README.md ├── mcts_general ├── __init__.py ├── agent.py ├── common │ ├── __init__.py │ ├── normalize.py │ └── wrapper.py ├── config.py ├── game.py └── mcts.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/README.md -------------------------------------------------------------------------------- /mcts_general/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcts_general/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/mcts_general/agent.py -------------------------------------------------------------------------------- /mcts_general/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcts_general/common/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/mcts_general/common/normalize.py -------------------------------------------------------------------------------- /mcts_general/common/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/mcts_general/common/wrapper.py -------------------------------------------------------------------------------- /mcts_general/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/mcts_general/config.py -------------------------------------------------------------------------------- /mcts_general/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/mcts_general/game.py -------------------------------------------------------------------------------- /mcts_general/mcts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/mcts_general/mcts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gym~=0.17.2 2 | numpy~=1.19.2 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickKorus/mcts-general/HEAD/setup.py --------------------------------------------------------------------------------