├── .gitattributes ├── .gitignore ├── .pypirc.enc ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── devtools └── conda-recipe │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── docs ├── .gitignore ├── Makefile ├── _static │ ├── autocorr.png │ └── css │ │ └── theme.css ├── _templates │ └── function.rst ├── autocorr.rst ├── conf.py ├── index.rst ├── installation.rst └── tuning.rst ├── experiments ├── Pyplots.pdf └── experiment1.py ├── pyhmc ├── __init__.py ├── _hmc.pyx ├── _utils.pyx ├── _version.py ├── autocorr1.py ├── autocorr2.py ├── autocorr3.py ├── autocorr4.py ├── autocorr5.py ├── autocorr6.py ├── hmc.py └── tests │ ├── __init__.py │ ├── test_autocorr1.py │ ├── test_autocorr2.py │ ├── test_autocorr3.py │ ├── test_autocorr4.py │ ├── test_autocorr5.py │ ├── test_autocorr6.py │ └── test_hmc.py ├── setup.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | hmc/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/.gitignore -------------------------------------------------------------------------------- /.pypirc.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/.pypirc.enc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/README.md -------------------------------------------------------------------------------- /devtools/conda-recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/devtools/conda-recipe/bld.bat -------------------------------------------------------------------------------- /devtools/conda-recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/devtools/conda-recipe/build.sh -------------------------------------------------------------------------------- /devtools/conda-recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/devtools/conda-recipe/meta.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | generated 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/autocorr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/docs/_static/autocorr.png -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_templates/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/docs/_templates/function.rst -------------------------------------------------------------------------------- /docs/autocorr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/docs/autocorr.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/tuning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/docs/tuning.rst -------------------------------------------------------------------------------- /experiments/Pyplots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/experiments/Pyplots.pdf -------------------------------------------------------------------------------- /experiments/experiment1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/experiments/experiment1.py -------------------------------------------------------------------------------- /pyhmc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/__init__.py -------------------------------------------------------------------------------- /pyhmc/_hmc.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/_hmc.pyx -------------------------------------------------------------------------------- /pyhmc/_utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/_utils.pyx -------------------------------------------------------------------------------- /pyhmc/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/_version.py -------------------------------------------------------------------------------- /pyhmc/autocorr1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/autocorr1.py -------------------------------------------------------------------------------- /pyhmc/autocorr2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/autocorr2.py -------------------------------------------------------------------------------- /pyhmc/autocorr3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/autocorr3.py -------------------------------------------------------------------------------- /pyhmc/autocorr4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/autocorr4.py -------------------------------------------------------------------------------- /pyhmc/autocorr5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/autocorr5.py -------------------------------------------------------------------------------- /pyhmc/autocorr6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/autocorr6.py -------------------------------------------------------------------------------- /pyhmc/hmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/hmc.py -------------------------------------------------------------------------------- /pyhmc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pyhmc/tests/test_autocorr1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/tests/test_autocorr1.py -------------------------------------------------------------------------------- /pyhmc/tests/test_autocorr2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/tests/test_autocorr2.py -------------------------------------------------------------------------------- /pyhmc/tests/test_autocorr3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/tests/test_autocorr3.py -------------------------------------------------------------------------------- /pyhmc/tests/test_autocorr4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/tests/test_autocorr4.py -------------------------------------------------------------------------------- /pyhmc/tests/test_autocorr5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/tests/test_autocorr5.py -------------------------------------------------------------------------------- /pyhmc/tests/test_autocorr6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/tests/test_autocorr6.py -------------------------------------------------------------------------------- /pyhmc/tests/test_hmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/pyhmc/tests/test_hmc.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmcgibbo/pyhmc/HEAD/versioneer.py --------------------------------------------------------------------------------