add minor to Eigen2Support

This commit is contained in:
Benoit Jacob
2010-04-22 20:49:01 -04:00
parent 2362eadcdd
commit a4f9ca44ab
6 changed files with 135 additions and 0 deletions

View File

@@ -57,6 +57,8 @@ template<typename MatrixType> void eigen2support(const MatrixType& m)
VERIFY_IS_EQUAL((m1.col(0).template start<1>()), (m1.col(0).segment(0,1)));
VERIFY_IS_EQUAL((m1.col(0).end(1)), (m1.col(0).segment(rows-1,1)));
VERIFY_IS_EQUAL((m1.col(0).template end<1>()), (m1.col(0).segment(rows-1,1)));
m1.minor(0,0);
}
void test_eigen2support()