diff options
author | Gael Guennebaud <g.gael@free.fr> | 2008-06-02 22:58:36 +0000 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2008-06-02 22:58:36 +0000 |
commit | 366971bea41c6af940b87d79122727bfc793cdac (patch) | |
tree | 1bfca4aa5d43094ac2f37b89b733e5bd0f77ffde /Eigen/src/QR | |
parent | 75de41a00b9d9bc1cc18c6dd0a0e87b661126e1d (diff) |
* start of the Geometry module with a cross product and quaternion expressions
(haven't tried them yet)
* applied the meta selector rule to MatrixBase::swap()
Diffstat (limited to 'Eigen/src/QR')
-rw-r--r-- | Eigen/src/QR/SelfAdjointEigenSolver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/QR/SelfAdjointEigenSolver.h b/Eigen/src/QR/SelfAdjointEigenSolver.h index 0140de118..01b31e704 100644 --- a/Eigen/src/QR/SelfAdjointEigenSolver.h +++ b/Eigen/src/QR/SelfAdjointEigenSolver.h @@ -260,7 +260,7 @@ static void ei_tridiagonal_qr_step(RealScalar* diag, RealScalar* subdiag, int st int kn1 = (k+1)*n; #endif // let's do the product manually to avoid the need of temporaries... - for (uint i=0; i<n; ++i) + for (int i=0; i<n; ++i) { #ifdef EIGEN_DEFAULT_TO_ROW_MAJOR Scalar matrixQ_i_k = matrixQ[i*n+k]; |