aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/MatrixBase.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-09-02 15:04:10 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-09-02 15:04:10 +0200
commitb83654b5d01155c4ea875090f0779b99241a91a4 (patch)
treebc8301caaa59b87f2476942dda7b45a3ec44e4f2 /Eigen/src/Core/MatrixBase.h
parent496ea63972f15c5bc7d43a7a4dc987b6cd33d176 (diff)
* rename JacobiRotation => PlanarRotation
* move the makeJacobi and make_givens_* to PlanarRotation * rename applyJacobi* => apply*
Diffstat (limited to 'Eigen/src/Core/MatrixBase.h')
-rw-r--r--Eigen/src/Core/MatrixBase.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h
index c2945ab46..9ac964168 100644
--- a/Eigen/src/Core/MatrixBase.h
+++ b/Eigen/src/Core/MatrixBase.h
@@ -803,11 +803,10 @@ template<typename Derived> class MatrixBase
///////// Jacobi module /////////
- template<typename JacobiScalar>
- void applyJacobiOnTheLeft(int p, int q, const JacobiRotation<JacobiScalar>& j);
- template<typename JacobiScalar>
- void applyJacobiOnTheRight(int p, int q, const JacobiRotation<JacobiScalar>& j);
- bool makeJacobi(int p, int q, JacobiRotation<Scalar> *j) const;
+ template<typename OtherScalar>
+ void applyOnTheLeft(int p, int q, const PlanarRotation<OtherScalar>& j);
+ template<typename OtherScalar>
+ void applyOnTheRight(int p, int q, const PlanarRotation<OtherScalar>& j);
#ifdef EIGEN_MATRIXBASE_PLUGIN
#include EIGEN_MATRIXBASE_PLUGIN