rename PlanarRotation -> JacobiRotation

This commit is contained in:
Benoit Jacob
2010-10-19 21:56:26 -04:00
parent 9044c98cff
commit e259f71477
18 changed files with 50 additions and 50 deletions

View File

@@ -201,7 +201,7 @@ HybridNonLinearSolver<FunctorType,Scalar>::solveOneStep(FVectorType &x)
assert(x.size()==n); // check the caller is not cheating us
Index j;
std::vector<PlanarRotation<Scalar> > v_givens(n), w_givens(n);
std::vector<JacobiRotation<Scalar> > v_givens(n), w_givens(n);
jeval = true;
@@ -440,7 +440,7 @@ HybridNonLinearSolver<FunctorType,Scalar>::solveNumericalDiffOneStep(FVectorType
assert(x.size()==n); // check the caller is not cheating us
Index j;
std::vector<PlanarRotation<Scalar> > v_givens(n), w_givens(n);
std::vector<JacobiRotation<Scalar> > v_givens(n), w_givens(n);
jeval = true;
if (parameters.nb_of_subdiagonals<0) parameters.nb_of_subdiagonals= n-1;