├── .gitignore ├── README.md ├── examples └── examples.ipynb ├── mgym ├── __init__.py ├── core.py └── envs │ ├── __init__.py │ ├── battleofthesexes_env.py │ ├── elfarol_env.py │ ├── matchingpennies_env.py │ ├── prisonersdilemma_env.py │ ├── repeatedgame.py │ ├── rockpaperscissors_env.py │ ├── snake_env.py │ ├── staghunt_env.py │ ├── tests │ ├── test_game_theory_envs.py │ └── test_tictactoe_env.py │ └── tictactoe_env.py ├── setup.py └── snake.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/README.md -------------------------------------------------------------------------------- /examples/examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/examples/examples.ipynb -------------------------------------------------------------------------------- /mgym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/__init__.py -------------------------------------------------------------------------------- /mgym/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/core.py -------------------------------------------------------------------------------- /mgym/envs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/__init__.py -------------------------------------------------------------------------------- /mgym/envs/battleofthesexes_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/battleofthesexes_env.py -------------------------------------------------------------------------------- /mgym/envs/elfarol_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/elfarol_env.py -------------------------------------------------------------------------------- /mgym/envs/matchingpennies_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/matchingpennies_env.py -------------------------------------------------------------------------------- /mgym/envs/prisonersdilemma_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/prisonersdilemma_env.py -------------------------------------------------------------------------------- /mgym/envs/repeatedgame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/repeatedgame.py -------------------------------------------------------------------------------- /mgym/envs/rockpaperscissors_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/rockpaperscissors_env.py -------------------------------------------------------------------------------- /mgym/envs/snake_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/snake_env.py -------------------------------------------------------------------------------- /mgym/envs/staghunt_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/staghunt_env.py -------------------------------------------------------------------------------- /mgym/envs/tests/test_game_theory_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/tests/test_game_theory_envs.py -------------------------------------------------------------------------------- /mgym/envs/tests/test_tictactoe_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/tests/test_tictactoe_env.py -------------------------------------------------------------------------------- /mgym/envs/tictactoe_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/mgym/envs/tictactoe_env.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/setup.py -------------------------------------------------------------------------------- /snake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjm715/mgym/HEAD/snake.jpg --------------------------------------------------------------------------------