Skip to content

Commit

Permalink
Merge fe68b9a into 736ef83
Browse files Browse the repository at this point in the history
  • Loading branch information
prmiles committed Oct 24, 2020
2 parents 736ef83 + fe68b9a commit 8a08a10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymcmcstat/ParallelMCMC.py
Expand Up @@ -279,7 +279,7 @@ def check_shape_of_users_initial_values(initial_values, num_chain, npar):
print('Shape of initial values inconsistent with requested number of parameters.\
\n npar = {}, initial_values.shape -> {},{}.\
Only using first {} columns of initial_values.'.format(npar, m, n, npar))
initial_values = np.delete(initial_values, [range(npar, n+1)], axis=1)
initial_values = np.delete(initial_values, [range(npar, initial_values.shape[1])], axis=1)
return num_chain, initial_values


Expand Down

0 comments on commit 8a08a10

Please sign in to comment.