├── .gitignore ├── README.md ├── main.py ├── regretmatching ├── __init__.py ├── model.py └── rps.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int8/regret-matching/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int8/regret-matching/HEAD/main.py -------------------------------------------------------------------------------- /regretmatching/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regretmatching/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int8/regret-matching/HEAD/regretmatching/model.py -------------------------------------------------------------------------------- /regretmatching/rps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int8/regret-matching/HEAD/regretmatching/rps.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.15.1 2 | --------------------------------------------------------------------------------