eigen2 support: pass remaining 2 tests

This commit is contained in:
Benoit Jacob
2011-01-31 08:55:38 -05:00
parent 7032ec80ae
commit df06f0be31
3 changed files with 10 additions and 6 deletions

View File

@@ -91,8 +91,8 @@ template<typename MatrixType> void swap(const MatrixType& m)
void test_eigen2_swap()
{
CALL_SUBTEST( swap_1(Matrix3f()) ); // fixed size, no vectorization
CALL_SUBTEST( swap_2(Matrix4d()) ); // fixed size, possible vectorization
CALL_SUBTEST( swap_3(MatrixXd(3,3)) ); // dyn size, no vectorization
CALL_SUBTEST( swap_4(MatrixXf(30,30)) ); // dyn size, possible vectorization
CALL_SUBTEST_1( swap(Matrix3f()) ); // fixed size, no vectorization
CALL_SUBTEST_1( swap(Matrix4d()) ); // fixed size, possible vectorization
CALL_SUBTEST_1( swap(MatrixXd(3,3)) ); // dyn size, no vectorization
CALL_SUBTEST_1( swap(MatrixXf(30,30)) ); // dyn size, possible vectorization
}