mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Remove useless "explicit", and fix inline/static order.
This commit is contained in:
2
Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
Normal file → Executable file
2
Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
Normal file → Executable file
@@ -145,7 +145,7 @@ template<typename _MatrixType> class GeneralizedEigenSolver
|
||||
*
|
||||
* \sa compute()
|
||||
*/
|
||||
explicit GeneralizedEigenSolver(const MatrixType& A, const MatrixType& B, bool computeEigenvectors = true)
|
||||
GeneralizedEigenSolver(const MatrixType& A, const MatrixType& B, bool computeEigenvectors = true)
|
||||
: m_eivec(A.rows(), A.cols()),
|
||||
m_alphas(A.cols()),
|
||||
m_betas(A.cols()),
|
||||
|
||||
2
Eigen/src/Eigenvalues/RealQZ.h
Normal file → Executable file
2
Eigen/src/Eigenvalues/RealQZ.h
Normal file → Executable file
@@ -101,7 +101,7 @@ namespace Eigen {
|
||||
*
|
||||
* This constructor calls compute() to compute the QZ decomposition.
|
||||
*/
|
||||
explicit RealQZ(const MatrixType& A, const MatrixType& B, bool computeQZ = true) :
|
||||
RealQZ(const MatrixType& A, const MatrixType& B, bool computeQZ = true) :
|
||||
m_S(A.rows(),A.cols()),
|
||||
m_T(A.rows(),A.cols()),
|
||||
m_Q(A.rows(),A.cols()),
|
||||
|
||||
Reference in New Issue
Block a user