├── .gitignore ├── .gitmodules ├── README.md ├── dds.md ├── dds.py └── examples ├── AnalyseAllPlaysBin.py ├── AnalyseAllPlaysPBN.py ├── AnalysePlayBin.py ├── AnalysePlayPBN.py ├── CalcAllTables.py ├── CalcAllTablesPBN.py ├── CalcDDtablePBN.py ├── CalcDDtablePBN.py.old ├── DealerPar.py ├── Par.py ├── SolveAllBoards.py ├── SolveBoard.py ├── SolveBoardPBN.py ├── SolveBoardPBN.py.old ├── __init__.py ├── dds.py ├── dump.txt ├── functions.py ├── hands.py └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | *__pycache__/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/README.md -------------------------------------------------------------------------------- /dds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/dds.md -------------------------------------------------------------------------------- /dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/dds.py -------------------------------------------------------------------------------- /examples/AnalyseAllPlaysBin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/AnalyseAllPlaysBin.py -------------------------------------------------------------------------------- /examples/AnalyseAllPlaysPBN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/AnalyseAllPlaysPBN.py -------------------------------------------------------------------------------- /examples/AnalysePlayBin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/AnalysePlayBin.py -------------------------------------------------------------------------------- /examples/AnalysePlayPBN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/AnalysePlayPBN.py -------------------------------------------------------------------------------- /examples/CalcAllTables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/CalcAllTables.py -------------------------------------------------------------------------------- /examples/CalcAllTablesPBN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/CalcAllTablesPBN.py -------------------------------------------------------------------------------- /examples/CalcDDtablePBN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/CalcDDtablePBN.py -------------------------------------------------------------------------------- /examples/CalcDDtablePBN.py.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/CalcDDtablePBN.py.old -------------------------------------------------------------------------------- /examples/DealerPar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/DealerPar.py -------------------------------------------------------------------------------- /examples/Par.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/Par.py -------------------------------------------------------------------------------- /examples/SolveAllBoards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/SolveAllBoards.py -------------------------------------------------------------------------------- /examples/SolveBoard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/SolveBoard.py -------------------------------------------------------------------------------- /examples/SolveBoardPBN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/SolveBoardPBN.py -------------------------------------------------------------------------------- /examples/SolveBoardPBN.py.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/SolveBoardPBN.py.old -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/dds.py -------------------------------------------------------------------------------- /examples/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/dump.txt -------------------------------------------------------------------------------- /examples/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/functions.py -------------------------------------------------------------------------------- /examples/hands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/hands.py -------------------------------------------------------------------------------- /examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afwas/python-dds/HEAD/examples/readme.md --------------------------------------------------------------------------------