├── .gitignore ├── LICENSE ├── README.md ├── examples └── toy_dataset.py ├── flymc ├── __init__.py ├── brightness_vars.py ├── chain_generators.py ├── models.py └── step_algorithms.py └── tests ├── README.md ├── __init__.py ├── model_setup.py ├── test_bounds.py ├── test_brightness_vars.py ├── test_model_derivatives.py ├── test_step_algorithms.py ├── test_toy_examples.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/README.md -------------------------------------------------------------------------------- /examples/toy_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/examples/toy_dataset.py -------------------------------------------------------------------------------- /flymc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/flymc/__init__.py -------------------------------------------------------------------------------- /flymc/brightness_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/flymc/brightness_vars.py -------------------------------------------------------------------------------- /flymc/chain_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/flymc/chain_generators.py -------------------------------------------------------------------------------- /flymc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/flymc/models.py -------------------------------------------------------------------------------- /flymc/step_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/flymc/step_algorithms.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/tests/model_setup.py -------------------------------------------------------------------------------- /tests/test_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/tests/test_bounds.py -------------------------------------------------------------------------------- /tests/test_brightness_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/tests/test_brightness_vars.py -------------------------------------------------------------------------------- /tests/test_model_derivatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/tests/test_model_derivatives.py -------------------------------------------------------------------------------- /tests/test_step_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/tests/test_step_algorithms.py -------------------------------------------------------------------------------- /tests/test_toy_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/tests/test_toy_examples.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIPS/firefly-monte-carlo/HEAD/tests/util.py --------------------------------------------------------------------------------