* fix LDLT's default ctor use

* add a reconstructedMatrix() function to LDLT for debug purpose
This commit is contained in:
Gael Guennebaud
2010-02-24 10:40:16 +01:00
parent 60325b8330
commit f7aa9873ca
2 changed files with 47 additions and 10 deletions

View File

@@ -117,7 +117,7 @@ template<typename _MatrixType, int _UpLo> class LLT
&& "LLT::solve(): invalid number of rows of the right hand side matrix b");
return ei_solve_retval<LLT, Rhs>(*this, b.derived());
}
template<typename Derived>
bool solveInPlace(MatrixBase<Derived> &bAndX) const;