undo my last commit

This commit is contained in:
Benoit Jacob
2010-01-07 21:51:40 -05:00
parent 5f0cf1d7f6
commit 7befc8d6f3

View File

@@ -116,10 +116,10 @@ void MatrixBase<Derived>::applyHouseholderOnTheRight(
{ {
Map<Matrix<Scalar, RowsAtCompileTime, 1, PlainMatrixType::Options, MaxRowsAtCompileTime, 1> > tmp(workspace,rows()); Map<Matrix<Scalar, RowsAtCompileTime, 1, PlainMatrixType::Options, MaxRowsAtCompileTime, 1> > tmp(workspace,rows());
Block<Derived, Derived::RowsAtCompileTime, EssentialPart::SizeAtCompileTime> right(derived(), 0, 1, rows(), cols()-1); Block<Derived, Derived::RowsAtCompileTime, EssentialPart::SizeAtCompileTime> right(derived(), 0, 1, rows(), cols()-1);
tmp.noalias() = right * essential.adjoint(); tmp.noalias() = right * essential.conjugate();
tmp += this->col(0); tmp += this->col(0);
this->col(0) -= tau * tmp; this->col(0) -= tau * tmp;
right.noalias() -= tau * tmp * essential; right.noalias() -= tau * tmp * essential.transpose();
} }
#endif // EIGEN_HOUSEHOLDER_H #endif // EIGEN_HOUSEHOLDER_H