├── .gitignore ├── README.md ├── __init__.py ├── deuces ├── __init__.py ├── card.py ├── deck.py ├── evaluator.py └── lookup.py ├── go.py ├── performance ├── perf_deuces.py ├── perf_handeval.py └── perf_specialk.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | build/ 4 | dist/ 5 | *.egg-info/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deuces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/deuces/__init__.py -------------------------------------------------------------------------------- /deuces/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/deuces/card.py -------------------------------------------------------------------------------- /deuces/deck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/deuces/deck.py -------------------------------------------------------------------------------- /deuces/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/deuces/evaluator.py -------------------------------------------------------------------------------- /deuces/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/deuces/lookup.py -------------------------------------------------------------------------------- /go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/go.py -------------------------------------------------------------------------------- /performance/perf_deuces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/performance/perf_deuces.py -------------------------------------------------------------------------------- /performance/perf_handeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/performance/perf_handeval.py -------------------------------------------------------------------------------- /performance/perf_specialk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/performance/perf_specialk.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaindon/deuces/HEAD/setup.py --------------------------------------------------------------------------------