Skip to content
Snippets Groups Projects
Commit 0fdeabd4 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Hot fix bug

In !221, I introduced a silly bug in a last-minute change: using round
brackets instead of square brackets.
parent cb9c52de
No related branches found
No related tags found
No related merge requests found
......@@ -431,7 +431,7 @@ class NestedSampler(Sampler):
"Multiple matches found between sorted and unsorted samples")
else:
idxs.append(idx[0])
return unsorted_loglikelihoods(idxs)
return unsorted_loglikelihoods[idxs]
class MCMCSampler(Sampler):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment