aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/lu.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-11-09 07:51:31 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-11-09 07:51:31 -0500
commit9a0900e33e9ca4bc174cfccc26dbf4bdc38f7627 (patch)
tree5d24519203764f0c6b6dc479946e56fd92025cb2 /test/lu.cpp
parente4e58e8337e82ba76f6bf4fe7000acac9337056c (diff)
last round of changes, mainly to return derived types instead of base types, and fix various compilation issues
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 954893651..9dcebbeaa 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_kernel_return_value<FullPivLU<MatrixType> >::ReturnMatrixType KernelMatrixType;
- typedef typename ei_image_return_value<FullPivLU<MatrixType> >::ReturnMatrixType ImageMatrixType;
+ typedef typename ei_kernel_retval_base<FullPivLU<MatrixType> >::ReturnMatrixType KernelMatrixType;
+ typedef typename ei_image_retval_base<FullPivLU<MatrixType> >::ReturnMatrixType ImageMatrixType;
typedef Matrix<typename MatrixType::Scalar, Dynamic, Dynamic> DynamicMatrixType;
typedef Matrix<typename MatrixType::Scalar, MatrixType::ColsAtCompileTime, MatrixType::ColsAtCompileTime>
CMatrixType;