mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
rename PlanarRotation -> JacobiRotation
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user