useful cleaning

This commit is contained in:
Thomas Capricelli 2010-01-25 07:08:08 +01:00
parent cbf6022e5a
commit 1cb0be05b0
2 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,7 @@
template <typename Scalar>
void ei_lmpar(
Matrix< Scalar, Dynamic, Dynamic > &r,
VectorXi &ipvt, // TODO : const once ipvt mess fixed
const VectorXi &ipvt,
const Matrix< Scalar, Dynamic, 1 > &diag,
const Matrix< Scalar, Dynamic, 1 > &qtb,
Scalar delta,
@ -166,4 +166,3 @@ void ei_lmpar(
par = 0.;
return;
}

View File

@ -2,7 +2,7 @@
template <typename Scalar>
void ei_qrsolv(
Matrix< Scalar, Dynamic, Dynamic > &r,
VectorXi &ipvt, // TODO : const once ipvt mess fixed
const VectorXi &ipvt,
const Matrix< Scalar, Dynamic, 1 > &diag,
const Matrix< Scalar, Dynamic, 1 > &qtb,
Matrix< Scalar, Dynamic, 1 > &x,