remove dynamic allocation for fixed size object and triangular matrix-matrix products

(transplanted from 57b5804974
)
This commit is contained in:
Gael Guennebaud
2012-06-26 17:45:01 +02:00
parent 086e0aae51
commit 4328afc1a5
4 changed files with 54 additions and 36 deletions

View File

@@ -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);