| 54 | } |
| 55 | |
| 56 | void test_selfadjoint() |
| 57 | { |
| 58 | for(int i = 0; i < g_repeat ; i++) |
| 59 | { |
| 60 | int s = internal::random<int>(1,EIGEN_TEST_MAX_SIZE); |
| 61 | |
| 62 | CALL_SUBTEST_1( selfadjoint(Matrix<float, 1, 1>()) ); |
| 63 | CALL_SUBTEST_2( selfadjoint(Matrix<float, 2, 2>()) ); |
| 64 | CALL_SUBTEST_3( selfadjoint(Matrix3cf()) ); |
| 65 | CALL_SUBTEST_4( selfadjoint(MatrixXcd(s,s)) ); |
| 66 | CALL_SUBTEST_5( selfadjoint(Matrix<float,Dynamic,Dynamic,RowMajor>(s, s)) ); |
| 67 | |
| 68 | TEST_SET_BUT_UNUSED_VARIABLE(s) |
| 69 | } |
| 70 | |
| 71 | CALL_SUBTEST_1( bug_159() ); |
| 72 | } |
nothing calls this directly
no test coverage detected