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

Adds check of number of segments to MCMCSC search

parent 4d1fdace
No related branches found
No related tags found
No related merge requests found
......@@ -1432,6 +1432,14 @@ class MCMCSemiCoherentSearch(MCMCSearch):
self.log_input()
def get_save_data_dictionary(self):
d = dict(nsteps=self.nsteps, nwalkers=self.nwalkers,
ntemps=self.ntemps, theta_keys=self.theta_keys,
theta_prior=self.theta_prior, scatter_val=self.scatter_val,
log10temperature_min=self.log10temperature_min,
BSGL=self.BSGL, nsegs=self.nsegs)
return d
def inititate_search_object(self):
logging.info('Setting up search object')
self.search = SemiCoherentSearch(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment