Skip to content
Snippets Groups Projects

Improve ptemcee

Merged Gregory Ashton requested to merge improve-ptemcee into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -192,7 +192,7 @@ class Ptemcee(MCMCSampler):
self.tau_list_n.append(sampler.time)
# Convert to an integer
tau_int = int(np.floor(tau)) if not np.isnan(tau) else tau
tau_int = int(np.ceil(tau)) if not np.isnan(tau) else tau
if np.isnan(tau_int) or np.isinf(tau_int):
print_progress(
Loading