| 142 | } |
| 143 | |
| 144 | void test_permutationmatrices() |
| 145 | { |
| 146 | for(int i = 0; i < g_repeat; i++) { |
| 147 | CALL_SUBTEST_1( permutationmatrices(Matrix<float, 1, 1>()) ); |
| 148 | CALL_SUBTEST_2( permutationmatrices(Matrix3f()) ); |
| 149 | CALL_SUBTEST_3( permutationmatrices(Matrix<double,3,3,RowMajor>()) ); |
| 150 | CALL_SUBTEST_4( permutationmatrices(Matrix4d()) ); |
| 151 | CALL_SUBTEST_5( permutationmatrices(Matrix<double,40,60>()) ); |
| 152 | CALL_SUBTEST_6( permutationmatrices(Matrix<double,Dynamic,Dynamic,RowMajor>(20, 30)) ); |
| 153 | CALL_SUBTEST_7( permutationmatrices(MatrixXcf(15, 10)) ); |
| 154 | } |
| 155 | CALL_SUBTEST_5( bug890<double>() ); |
| 156 | } |
nothing calls this directly
no test coverage detected