From 79e1ce609319e749d8d9a9aa2ffbcf0600ab1b93 Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Fri, 2 Apr 2010 21:05:32 +0100 Subject: RealSchur and EigenSolver: some straightforward renames. --- Eigen/src/Eigenvalues/EigenSolver.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Eigen/src/Eigenvalues/EigenSolver.h') diff --git a/Eigen/src/Eigenvalues/EigenSolver.h b/Eigen/src/Eigenvalues/EigenSolver.h index efd31f18c..44a0fd485 100644 --- a/Eigen/src/Eigenvalues/EigenSolver.h +++ b/Eigen/src/Eigenvalues/EigenSolver.h @@ -95,21 +95,21 @@ template class EigenSolver * \c float or \c double) and just \c Scalar if #Scalar is * complex. */ - typedef std::complex Complex; + typedef std::complex ComplexScalar; /** \brief Type for vector of eigenvalues as returned by eigenvalues(). * - * This is a column vector with entries of type #Complex. + * This is a column vector with entries of type #ComplexScalar. * The length of the vector is the size of \p _MatrixType. */ - typedef Matrix EigenvalueType; + typedef Matrix EigenvalueType; /** \brief Type for matrix of eigenvectors as returned by eigenvectors(). * - * This is a square matrix with entries of type #Complex. + * This is a square matrix with entries of type #ComplexScalar. * The size is the same as the size of \p _MatrixType. */ - typedef Matrix EigenvectorType; + typedef Matrix EigenvectorType; /** \brief Default constructor. * @@ -286,15 +286,15 @@ typename EigenSolver::EigenvectorType EigenSolver::eigen if (ei_isMuchSmallerThan(ei_abs(ei_imag(m_eivalues.coeff(j))), ei_abs(ei_real(m_eivalues.coeff(j))))) { // we have a real eigen value - matV.col(j) = m_eivec.col(j).template cast(); + matV.col(j) = m_eivec.col(j).template cast(); } else { // we have a pair of complex eigen values for (int i=0; i