From e259f71477c05de231118a114398be22697feaaa Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Tue, 19 Oct 2010 21:56:26 -0400 Subject: rename PlanarRotation -> JacobiRotation --- blas/level1_impl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'blas') diff --git a/blas/level1_impl.h b/blas/level1_impl.h index 1665310c4..174ede3ce 100644 --- a/blas/level1_impl.h +++ b/blas/level1_impl.h @@ -233,9 +233,9 @@ int EIGEN_BLAS_FUNC(rot)(int *n, RealScalar *px, int *incx, RealScalar *py, int Reverse rvx(vx); Reverse rvy(vy); - if(*incx<0 && *incy>0) ei_apply_rotation_in_the_plane(rvx, vy, PlanarRotation(c,s)); - else if(*incx>0 && *incy<0) ei_apply_rotation_in_the_plane(vx, rvy, PlanarRotation(c,s)); - else ei_apply_rotation_in_the_plane(vx, vy, PlanarRotation(c,s)); + if(*incx<0 && *incy>0) ei_apply_rotation_in_the_plane(rvx, vy, JacobiRotation(c,s)); + else if(*incx>0 && *incy<0) ei_apply_rotation_in_the_plane(vx, rvy, JacobiRotation(c,s)); + else ei_apply_rotation_in_the_plane(vx, vy, JacobiRotation(c,s)); return 0; @@ -293,7 +293,7 @@ int EIGEN_BLAS_FUNC(rotg)(RealScalar *pa, RealScalar *pb, RealScalar *pc, RealSc } #endif -// PlanarRotation r; +// JacobiRotation r; // r.makeGivens(a,b); // *c = r.c(); // *s = r.s(); -- cgit v1.2.3