├── .gitignore ├── README.md ├── README.rst ├── license.txt ├── setup.py ├── sobol_seq ├── __init__.py ├── sobol_seq-not_tested.py └── sobol_seq.py └── tests ├── __init__.py ├── sobol_test.py └── sobol_test_output.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/README.rst -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/license.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/setup.py -------------------------------------------------------------------------------- /sobol_seq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/sobol_seq/__init__.py -------------------------------------------------------------------------------- /sobol_seq/sobol_seq-not_tested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/sobol_seq/sobol_seq-not_tested.py -------------------------------------------------------------------------------- /sobol_seq/sobol_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/sobol_seq/sobol_seq.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sobol_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/tests/sobol_test.py -------------------------------------------------------------------------------- /tests/sobol_test_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naught101/sobol_seq/HEAD/tests/sobol_test_output.txt --------------------------------------------------------------------------------