Skip to content

Commit e65aad2

Browse files
Fix MvNormal quaddist_matrix parameter order
1 parent 6ceebdf commit e65aad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/distributions/multivariate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ class MvNormal(Continuous):
221221
@classmethod
222222
def dist(cls, mu, cov=None, tau=None, chol=None, lower=True, **kwargs):
223223
mu = aet.as_tensor_variable(mu)
224-
cov = quaddist_matrix(cov, tau, chol, lower)
224+
cov = quaddist_matrix(cov, chol, tau, lower)
225225
return super().dist([mu, cov], **kwargs)
226226

227227
def logp(value, mu, cov):

0 commit comments

Comments
 (0)