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

@@ -10,7 +10,7 @@ void ei_rwupdt(
const Index n = r.cols();
assert(r.rows()>=n);
std::vector<PlanarRotation<Scalar> > givens(n);
std::vector<JacobiRotation<Scalar> > givens(n);
/* Local variables */
Scalar temp, rowj;
@@ -29,7 +29,7 @@ void ei_rwupdt(
if (rowj == 0.)
{
givens[j] = PlanarRotation<Scalar>(1,0);
givens[j] = JacobiRotation<Scalar>(1,0);
continue;
}