aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas/level1_impl.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-19 21:56:26 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-19 21:56:26 -0400
commite259f71477c05de231118a114398be22697feaaa (patch)
tree2438ca06bf8e7eb5a998b61ecd64334e956c2fc5 /blas/level1_impl.h
parent9044c98cff257a4f7429deaa78cae59132957db7 (diff)
rename PlanarRotation -> JacobiRotation
Diffstat (limited to 'blas/level1_impl.h')
-rw-r--r--blas/level1_impl.h8
1 files changed, 4 insertions, 4 deletions
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<StridedVectorType> rvx(vx);
Reverse<StridedVectorType> rvy(vy);
- if(*incx<0 && *incy>0) ei_apply_rotation_in_the_plane(rvx, vy, PlanarRotation<Scalar>(c,s));
- else if(*incx>0 && *incy<0) ei_apply_rotation_in_the_plane(vx, rvy, PlanarRotation<Scalar>(c,s));
- else ei_apply_rotation_in_the_plane(vx, vy, PlanarRotation<Scalar>(c,s));
+ if(*incx<0 && *incy>0) ei_apply_rotation_in_the_plane(rvx, vy, JacobiRotation<Scalar>(c,s));
+ else if(*incx>0 && *incy<0) ei_apply_rotation_in_the_plane(vx, rvy, JacobiRotation<Scalar>(c,s));
+ else ei_apply_rotation_in_the_plane(vx, vy, JacobiRotation<Scalar>(c,s));
return 0;
@@ -293,7 +293,7 @@ int EIGEN_BLAS_FUNC(rotg)(RealScalar *pa, RealScalar *pb, RealScalar *pc, RealSc
}
#endif
-// PlanarRotation<Scalar> r;
+// JacobiRotation<Scalar> r;
// r.makeGivens(a,b);
// *c = r.c();
// *s = r.s();