aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/lu.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-10-29 21:11:05 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-10-29 21:11:05 -0400
commit6b48e932e9b68159d2b0cc9d0d14c4025808327c (patch)
treeb10f93514e0fea336606fd00999addc4ad63df1b /test/lu.cpp
parente8dd552257f0e886ee281aa84b7094fc489608d0 (diff)
*port the Cholesky module to the new solve() API
*improve documentation
Diffstat (limited to 'test/lu.cpp')
-rw-r--r--test/lu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lu.cpp b/test/lu.cpp
index b7214ae12..c46ca9130 100644
--- a/test/lu.cpp
+++ b/test/lu.cpp
@@ -49,8 +49,8 @@ template<typename MatrixType> void lu_non_invertible()
cols2 = cols = MatrixType::ColsAtCompileTime;
}
- typedef typename ei_lu_kernel_impl<MatrixType>::ReturnMatrixType KernelMatrixType;
- typedef typename ei_lu_image_impl <MatrixType>::ReturnMatrixType ImageMatrixType;
+ typedef typename ei_fullpivlu_kernel_impl<MatrixType>::ReturnMatrixType KernelMatrixType;
+ typedef typename ei_fullpivlu_image_impl <MatrixType>::ReturnMatrixType ImageMatrixType;
typedef Matrix<typename MatrixType::Scalar, Dynamic, Dynamic> DynamicMatrixType;
typedef Matrix<typename MatrixType::Scalar, MatrixType::ColsAtCompileTime, MatrixType::ColsAtCompileTime>
CMatrixType;