Skip to content

Commit

Permalink
Bug fix to cube samples code with python to fortran indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
williamjameshandley committed Jun 23, 2023
1 parent cfa26e4 commit 99a5961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypolychord/polychord.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def write(var):
write('=== Number of equally weighted posterior points in each cluster ===')
write(0)
write('=== Minimum loglikelihood positions ===')
write(np.argmin(lives[:,-1]))
write(np.argmin(lives[:,-1])+1)
write('=== Number of weighted posterior points in each dead cluster ===')
write('=== Number of equally weighted posterior points in each dead cluster ===')
write('=== global evidence -- log(<Z>) ===')
Expand Down

0 comments on commit 99a5961

Please sign in to comment.