Skip to content
Snippets Groups Projects
Commit a2ed3a73 authored by moritz's avatar moritz
Browse files

Moritz Huebner: Added call to superclass in Dynesty __init__

parent 4d1caf82
No related branches found
No related tags found
1 merge request!13Source reimplementation
......@@ -187,6 +187,12 @@ class Nestle(Sampler):
class Dynesty(Sampler):
def __init__(self, likelihood, prior, sampler_string, outdir='outdir',
label='label', **kwargs):
Sampler.__init__(self, likelihood, prior, sampler_string, outdir,
label, **kwargs)
def run_sampler(self):
dynesty = self.extenal_sampler
nested_sampler = dynesty.NestedSampler(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment