├── .gitattributes ├── .gitignore ├── AI.py ├── AI_VS.py ├── Game.py ├── README.md ├── __pycache__ ├── AI.cpython-36.pyc └── Game.cpython-36.pyc ├── debug_info.txt ├── main.py └── output.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/.gitignore -------------------------------------------------------------------------------- /AI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/AI.py -------------------------------------------------------------------------------- /AI_VS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/AI_VS.py -------------------------------------------------------------------------------- /Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/Game.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mahjong 2 | -自制麻将AI框架 3 | -运行main.py,输入1开始玩 4 | -**不要轻易运行AI_VS,这是做大量测试用的** 5 | -------------------------------------------------------------------------------- /__pycache__/AI.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/__pycache__/AI.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/Game.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/__pycache__/Game.cpython-36.pyc -------------------------------------------------------------------------------- /debug_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/debug_info.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/main.py -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haskely/Mahjong/HEAD/output.txt --------------------------------------------------------------------------------