| 240 | } |
| 241 | |
| 242 | void test_vectorwiseop() |
| 243 | { |
| 244 | CALL_SUBTEST_1( vectorwiseop_array(Array22cd()) ); |
| 245 | CALL_SUBTEST_2( vectorwiseop_array(Array<double, 3, 2>()) ); |
| 246 | CALL_SUBTEST_3( vectorwiseop_array(ArrayXXf(3, 4)) ); |
| 247 | CALL_SUBTEST_4( vectorwiseop_matrix(Matrix4cf()) ); |
| 248 | CALL_SUBTEST_5( vectorwiseop_matrix(Matrix<float,4,5>()) ); |
| 249 | CALL_SUBTEST_6( vectorwiseop_matrix(MatrixXd(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) ); |
| 250 | CALL_SUBTEST_7( vectorwiseop_matrix(VectorXd(internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) ); |
| 251 | CALL_SUBTEST_7( vectorwiseop_matrix(RowVectorXd(internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) ); |
| 252 | } |
nothing calls this directly
no test coverage detected