@@ -11,8 +11,6 @@ TEST(MathMatrix, to_ref_matrix_exprs_tuple) {
1111 Eigen::MatrixXd a = Eigen::MatrixXd::Random (3 , 3 );
1212 auto x = std::make_tuple (a * a, a, a.array () * 3 );
1313 auto x_ref = stan::math::to_ref (x);
14- std::cout << stan::math::test::type_name<decltype (x)>() << std::endl;
15- std::cout << stan::math::test::type_name<decltype (x_ref)>() << std::endl;
1614 using x_ref_t = decltype (x_ref);
1715 static_assert (is_same_tuple_element_v<0 , x_ref_t , Eigen::MatrixXd>,
1816 " first entry should be Eigen::MatrixXd!" );
@@ -29,8 +27,6 @@ TEST(MathMatrix, to_ref_matrix_views_tuple) {
2927 auto x = std::make_tuple (a.block (0 , 0 , 1 , 1 ),
3028 a (Eigen::placeholders::all, {2 , 1 , 1 }), a.array ());
3129 auto x_ref = stan::math::to_ref (x);
32- std::cout << stan::math::test::type_name<decltype (x)>() << std::endl;
33- std::cout << stan::math::test::type_name<decltype (x_ref)>() << std::endl;
3430 using x_ref_t = decltype (x_ref);
3531 using stan::test::is_same_tuple_element_v;
3632 static_assert (!is_same_tuple_element_v<0 , x_ref_t , Eigen::MatrixXd>,
0 commit comments