* make HessenbergDecomposition uses the Householder module

* bugfix in ei_blas_traits for .conjugate().conjugate()
This commit is contained in:
Gael Guennebaud
2009-08-17 17:41:01 +02:00
parent ff0f005d4c
commit d56be9c128
3 changed files with 24 additions and 70 deletions

View File

@@ -201,7 +201,6 @@ void Tridiagonalization<MatrixType>::_compute(MatrixType& matA, CoeffVectorType&
Matrix<Scalar,1,Dynamic> aux(n);
for (int i = 0; i<n-1; ++i)
{
int remainingSize = n-i-1;
RealScalar beta;
Scalar h;