Skip to content
Snippets Groups Projects
Commit 8fcb76d2 authored by Matthew David Pitkin's avatar Matthew David Pitkin
Browse files

hierarchical.py: make sure powerlaw returns -inf probability for invalid parameters

parent 4ec2828a
No related branches found
No related tags found
No related merge requests found
......@@ -766,6 +766,9 @@ class PowerLawDistribution(BaseDistribution):
elif np.any(value > maximum):
return -np.inf
if maximum <= minimum:
return -np.inf
# get log pdf
logpdf = bilby.core.prior.PowerLaw(alpha, minimum, maximum).ln_prob(value)
......
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