aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/triangular.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-10-13 13:14:43 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-10-13 13:14:43 +0000
commite2bd8623f88c3e7aa1c4a2eaa5dc7ab351219a33 (patch)
tree53276dd191e8138b1df91026e3a53b73a6ae23d3 /test/triangular.cpp
parent537a0e0a522123fd9e2938487d42e5c95ea4b640 (diff)
Solve the issue found by Timothy in solveTriangular:
=> row-major rhs are now evaluated to a column-major temporary before the computations. Add solveInPlace in Cholesky*
Diffstat (limited to 'test/triangular.cpp')
-rw-r--r--test/triangular.cpp1
1 files changed, 1 insertions, 0 deletions
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)) );
}
}