aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/sparse.cpp4
-rw-r--r--test/triangular.cpp1
2 files changed, 5 insertions, 0 deletions
diff --git a/test/sparse.cpp b/test/sparse.cpp
index 040f889cb..39ea05b8b 100644
--- a/test/sparse.cpp
+++ b/test/sparse.cpp
@@ -217,6 +217,10 @@ template<typename Scalar> void sparse(int rows, int cols)
// TODO test row major
}
+ // test Cholesky
+ {
+ }
+
}
void test_sparse()
diff --git a/test/triangular.cpp b/test/triangular.cpp
index 2ada0dd90..34afa7b3c 100644
--- a/test/triangular.cpp
+++ b/test/triangular.cpp
@@ -125,5 +125,6 @@ void test_triangular()
CALL_SUBTEST( triangular(MatrixXcf(4, 4)) );
CALL_SUBTEST( triangular(Matrix<std::complex<float>,8, 8>()) );
CALL_SUBTEST( triangular(MatrixXd(17,17)) );
+ CALL_SUBTEST( triangular(Matrix<float,Dynamic,Dynamic,RowMajor>(5, 5)) );
}
}