aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/nomalloc.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-06-26 17:45:01 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-06-26 17:45:01 +0200
commit57b5804974913b6b09cdb20ef638afe9c75a33f2 (patch)
treeed567d2ab9a889542e46f62bbd2b2c6720e71a21 /test/nomalloc.cpp
parent8994f9962a7a0b5e439beb866f309f83d31f0b00 (diff)
remove dynamic allocation for fixed size object and triangular matrix-matrix products
Diffstat (limited to 'test/nomalloc.cpp')
-rw-r--r--test/nomalloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/nomalloc.cpp b/test/nomalloc.cpp
index 1feeff4bc..f7c2ed229 100644
--- a/test/nomalloc.cpp
+++ b/test/nomalloc.cpp
@@ -165,7 +165,7 @@ void ctms_decompositions()
X = hQR.solve(B);
x = hQR.solve(b);
Eigen::ColPivHouseholderQR<Matrix> cpQR; cpQR.compute(A);
- // FIXME X = cpQR.solve(B);
+ X = cpQR.solve(B);
x = cpQR.solve(b);
Eigen::FullPivHouseholderQR<Matrix> fpQR; fpQR.compute(A);
// FIXME X = fpQR.solve(B);