Skip to content

Commit 71590ee

Browse files
committed
bounds_check -> check_bounds.
1 parent d3cf73f commit 71590ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/distributions/dist_math.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def bound(logp, *conditions, **kwargs):
7272
# If called inside a model context, see if bounds check is disabled
7373
try:
7474
model = modelcontext(kwargs.get("model"))
75-
if not model.bounds_check:
75+
if not model.check_bounds:
7676
return logp
7777
except TypeError: # No model found
7878
pass

0 commit comments

Comments
 (0)