mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-19 16:19:37 +08:00
mark more methods as const. also rename, Numeric.h->NumTraits.h
This commit is contained in:
parent
e445f5085a
commit
5f0af72abc
@ -6,7 +6,7 @@
|
||||
namespace Eigen {
|
||||
|
||||
#include "Core/Util.h"
|
||||
#include "Core/Numeric.h"
|
||||
#include "Core/NumTraits.h"
|
||||
#include "Core/Object.h"
|
||||
#include "Core/CopyHelper.h"
|
||||
#include "Core/MatrixRef.h"
|
||||
|
@ -76,9 +76,10 @@ template<typename MatrixType> class Block
|
||||
|
||||
template<typename Scalar, typename Derived>
|
||||
Block<Derived>
|
||||
Object<Scalar, Derived>::block(int startRow, int endRow, int startCol, int endCol)
|
||||
Object<Scalar, Derived>::block(int startRow, int endRow, int startCol, int endCol) const
|
||||
{
|
||||
return Block<Derived>(static_cast<Derived*>(this)->ref(), startRow, endRow, startCol, endCol);
|
||||
return Block<Derived>(static_cast<Derived*>(const_cast<Object*>(this))->ref(),
|
||||
startRow, endRow, startCol, endCol);
|
||||
}
|
||||
|
||||
#endif // EI_BLOCK_H
|
||||
|
@ -75,9 +75,9 @@ template<typename MatrixType> class Minor
|
||||
|
||||
template<typename Scalar, typename Derived>
|
||||
Minor<Derived>
|
||||
Object<Scalar, Derived>::minor(int row, int col)
|
||||
Object<Scalar, Derived>::minor(int row, int col) const
|
||||
{
|
||||
return Minor<Derived>(static_cast<Derived*>(this)->ref(), row, col);
|
||||
return Minor<Derived>(static_cast<Derived*>(const_cast<Object*>(this))->ref(), row, col);
|
||||
}
|
||||
|
||||
#endif // EI_MINOR_H
|
||||
|
@ -97,9 +97,9 @@ template<typename Scalar, typename Derived> class Object
|
||||
|
||||
Row<Derived> row(int i) const;
|
||||
Column<Derived> col(int i) const;
|
||||
Minor<Derived> minor(int row, int col);
|
||||
Block<Derived> block(int startRow, int endRow, int startCol, int endCol);
|
||||
Transpose<Derived> transpose();
|
||||
Minor<Derived> minor(int row, int col) const;
|
||||
Block<Derived> block(int startRow, int endRow, int startCol, int endCol) const;
|
||||
Transpose<Derived> transpose() const;
|
||||
Conjugate<Derived> conjugate() const;
|
||||
Transpose<Conjugate<Derived> > adjoint() const { return conjugate().transpose(); }
|
||||
Scalar trace() const;
|
||||
|
@ -66,9 +66,9 @@ template<typename MatrixType> class Transpose
|
||||
|
||||
template<typename Scalar, typename Derived>
|
||||
Transpose<Derived>
|
||||
Object<Scalar, Derived>::transpose()
|
||||
Object<Scalar, Derived>::transpose() const
|
||||
{
|
||||
return Transpose<Derived>(static_cast<Derived*>(this)->ref());
|
||||
return Transpose<Derived>(static_cast<Derived*>(const_cast<Object*>(this))->ref());
|
||||
}
|
||||
|
||||
#endif // EI_TRANSPOSE_H
|
||||
|
Loading…
x
Reference in New Issue
Block a user