Skip to content

Commit c30d18d

Browse files
committed
Update wishart rng seed
1 parent 2d8935f commit c30d18d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/math/prim/prob/inv_wishart_cholesky_rng_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ TEST(ProbDistributionsInvWishartCholesky, SpecialRNGTest) {
9191
using stan::math::inv_wishart_cholesky_rng;
9292
using stan::math::multiply_lower_tri_self_transpose;
9393

94-
boost::random::mixmax rng(92343U);
94+
boost::random::mixmax rng(9234U);
9595
int N = 1e5;
9696
double tol = 0.1;
9797
for (int k = 1; k < 5; k++) {
@@ -123,7 +123,7 @@ TEST(ProbDistributionsInvWishartCholesky, compareToInvWishart) {
123123
using stan::math::multiply_lower_tri_self_transpose;
124124
using stan::math::qr_thin_Q;
125125

126-
boost::random::mixmax rng(92343U);
126+
boost::random::mixmax rng(9234U);
127127
int N = 1e4;
128128
double tol = 0.05;
129129
for (int k = 1; k < 4; k++) {

0 commit comments

Comments
 (0)