aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/nomalloc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/nomalloc.cpp')
-rw-r--r--test/nomalloc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/nomalloc.cpp b/test/nomalloc.cpp
index c1965a8ac..b4c0ff741 100644
--- a/test/nomalloc.cpp
+++ b/test/nomalloc.cpp
@@ -125,8 +125,7 @@ void ctms_decompositions()
Eigen::FullPivHouseholderQR<Matrix> fpQR; fpQR.compute(A);
// SVD module
- Eigen::JacobiSVD<Matrix> jSVD; jSVD.compute(A);
- Eigen::SVD<Matrix> svd; svd.compute(A);
+ Eigen::JacobiSVD<Matrix> jSVD; jSVD.compute(A, ComputeFullU | ComputeFullV);
}
void test_nomalloc()