Skip to content

Commit

Permalink
Merge pull request #96 from pcubillos/mdhimes-mpi
Browse files Browse the repository at this point in the history
Mdhimes mpi
  • Loading branch information
pcubillos authored Jun 1, 2018
2 parents 5229365 + b0bc19b commit efecffe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion MCcubed/VERSION.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# MC3 Version:
MC3_VER = 1 # Major version
MC3_MIN = 3 # Minor version
MC3_REV = 1 # Revision
MC3_REV = 2 # Revision
4 changes: 4 additions & 0 deletions MCcubed/mc/mcmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,10 @@ def mcmc(data, uncert=None, func=None, indparams=[],
"the number of iterations per chain ({:d}).".
format(burnin, chainsize), log)

# Ensure that hsize is > nchains
if walk=='snooker' and hsize < nchains:
hsize = nchains + 1

# Intermediate steps to run GR test and print progress report:
intsteps = chainsize / 10

Expand Down

0 comments on commit efecffe

Please sign in to comment.