-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a unified nested sampling method for multiple samplers, including interface to input arguments and output files. Remove old dynesty iterator based interface, and many sampling options.
- Loading branch information
Showing
6 changed files
with
336 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from .ensemble import run_emcee_sampler, restart_emcee_sampler | ||
from .minimizer import reinitialize | ||
from .nested import run_dynesty_sampler | ||
from .nested import run_nested_sampler | ||
from .fitting import fit_model, lnprobfn, run_minimize | ||
|
||
__all__ = ["fit_model", "lnprobfn", | ||
# below should all be removed/deprecated | ||
"run_emcee_sampler", "restart_emcee_sampler", | ||
"run_dynesty_sampler", | ||
"run_nested_sampler", | ||
"run_minimize", "reinitialize"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.