Skip to content

Commit

Permalink
fix typo in ACT that's printed to screen (gwastro#3402)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdcapano authored and lenona committed Sep 14, 2020
1 parent 24ec28d commit 9d1497b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pycbc/inference/sampler/base_mcmc.py
Expand Up @@ -971,5 +971,5 @@ def ensemble_compute_acl(filename, start_index=None, end_index=None,
acl = numpy.inf
acls[param] = acl
maxacl = numpy.array(list(acls.values())).max()
logging.info("ACT: %s", str(maxacl*fp.thin_interval))
logging.info("ACT: %s", str(maxacl*fp.thinned_by))
return acls
2 changes: 1 addition & 1 deletion pycbc/inference/sampler/base_multitemper.py
Expand Up @@ -395,7 +395,7 @@ def ensemble_compute_acl(filename, start_index=None, end_index=None,
these_acls[tk] = acl
acls[param] = these_acls
maxacl = numpy.array(list(acls.values())).max()
logging.info("ACT: %s", str(maxacl*fp.thin_interval))
logging.info("ACT: %s", str(maxacl*fp.thinned_by))
return acls


Expand Down

0 comments on commit 9d1497b

Please sign in to comment.