├── .gitignore ├── README.md ├── holdme ├── README.md ├── __init__.py ├── _gen_tables.py ├── _lib.pyx ├── core.py ├── hand_eval.c ├── hand_eval.h ├── hand_eval.pxd ├── tables.h └── tests │ ├── __init__.py │ └── test_core.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/README.md -------------------------------------------------------------------------------- /holdme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/holdme/README.md -------------------------------------------------------------------------------- /holdme/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | -------------------------------------------------------------------------------- /holdme/_gen_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/holdme/_gen_tables.py -------------------------------------------------------------------------------- /holdme/_lib.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/holdme/_lib.pyx -------------------------------------------------------------------------------- /holdme/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/holdme/core.py -------------------------------------------------------------------------------- /holdme/hand_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/holdme/hand_eval.c -------------------------------------------------------------------------------- /holdme/hand_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/holdme/hand_eval.h -------------------------------------------------------------------------------- /holdme/hand_eval.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/holdme/hand_eval.pxd -------------------------------------------------------------------------------- /holdme/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/holdme/tables.h -------------------------------------------------------------------------------- /holdme/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /holdme/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/holdme/tests/test_core.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisBeaumont/holdme/HEAD/setup.py --------------------------------------------------------------------------------