├── .gitignore ├── LICENSE ├── README.md ├── models.py ├── sampler.py └── snail.py /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagelywizard/snail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagelywizard/snail/HEAD/README.md -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagelywizard/snail/HEAD/models.py -------------------------------------------------------------------------------- /sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagelywizard/snail/HEAD/sampler.py -------------------------------------------------------------------------------- /snail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagelywizard/snail/HEAD/snail.py --------------------------------------------------------------------------------