From 8277308915e07f60cb85ecf66aaa7c52b1fc014c Mon Sep 17 00:00:00 2001 From: Gregory Ashton <gregory.ashton@ligo.org> Date: Mon, 28 May 2018 18:32:35 +1000 Subject: [PATCH] Fix errors --- pyfstat/mcmc_based_searches.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfstat/mcmc_based_searches.py b/pyfstat/mcmc_based_searches.py index eddb012..794c70c 100644 --- a/pyfstat/mcmc_based_searches.py +++ b/pyfstat/mcmc_based_searches.py @@ -131,7 +131,7 @@ class MCMCSearch(core.BaseSearchClass): self.nwalkers = nwalkers self.ntemps = ntemps self.log10beta_min = log10beta_min - self.theta_initial = self.theta_initial + self.theta_initial = theta_initial self.rhohatmax = rhohatmax self.binary = binary self.BSGL = BSGL @@ -1990,7 +1990,7 @@ class MCMCSemiCoherentSearch(MCMCSearch): self.nwalkers = nwalkers self.ntemps = ntemps self.log10beta_min = log10beta_min - self.theta_initial = self.theta_initial + self.theta_initial = theta_initial self.rhohatmax = rhohatmax self.binary = binary self.BSGL = BSGL @@ -2155,7 +2155,7 @@ class MCMCFollowUpSearch(MCMCSemiCoherentSearch): self.nwalkers = nwalkers self.ntemps = ntemps self.log10beta_min = log10beta_min - self.theta_initial = self.theta_initial + self.theta_initial = theta_initial self.rhohatmax = rhohatmax self.binary = binary self.BSGL = BSGL -- GitLab