Skip to content

Commit 1cfdc67

Browse files
committed
Undo stray test change
1 parent 6beecf2 commit 1cfdc67

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

test/unit/math/mix/fun/exp_test.cpp

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ TEST(mathMixMatFun, exp) {
77
};
88
stan::test::expect_common_unary_vectorized<
99
stan::test::ScalarSupport::RealAndComplex>(f);
10-
// stan::test::expect_unary_vectorized<
11-
// stan::test::ScalarSupport::RealAndComplex>(f, -15.2, -10, -0.5, 0.5,
12-
// 1,
13-
// 1.0, 1.3, 5, 10);
14-
// stan::test::expect_complex_common(f);
10+
stan::test::expect_unary_vectorized<
11+
stan::test::ScalarSupport::RealAndComplex>(f, -15.2, -10, -0.5, 0.5, 1,
12+
1.0, 1.3, 5, 10);
13+
stan::test::expect_complex_common(f);
1514

1615
std::vector<double> com_args = stan::test::internal::common_nonzero_args();
1716
std::vector<double> args{-2.6, -0.5, 0.5, 1.5};
1817

19-
// stan::test::expect_ad_vector_matvar(f, stan::math::to_vector(com_args));
20-
// stan::test::expect_ad_vector_matvar(f, stan::math::to_vector(args));
18+
stan::test::expect_ad_vector_matvar(f, stan::math::to_vector(com_args));
19+
stan::test::expect_ad_vector_matvar(f, stan::math::to_vector(args));
2120
}

0 commit comments

Comments
 (0)