Skip to content
Snippets Groups Projects
Commit d1584202 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Fix prior printing output

When setting up the sampler, a string summary of the prior is logged.
Fixes a bug where the Parameter was printed, not the Prior.
parent b4d5a770
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -121,7 +121,7 @@ class Sampler:
logging.info("Search parameters:")
for key in self.search_parameter_keys:
logging.info(' {} ~ {}'.format(key, self.prior[key]))
logging.info(' {} ~ {}'.format(key, self.prior[key].prior))
def verify_prior(self):
required_keys = self.likelihood.waveformgenerator.parameter_keys
......
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