We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 915adcf commit 5569839Copy full SHA for 5569839
pymc3/distributions/multivariate.py
@@ -1401,11 +1401,11 @@ def logp(self, x):
1401
result = _lkj_normalizing_constant(eta, n)
1402
result += (eta - 1.0) * at.log(det(X))
1403
return bound(
1404
- result,
1405
- X >= -1,
1406
- X <= 1,
1407
- matrix_pos_def(X),
1408
- eta > 0,
+ result,
+ X >= -1,
+ X <= 1,
+ matrix_pos_def(X),
+ eta > 0,
1409
broadcast_conditions=False,
1410
)
1411
0 commit comments