mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-31 19:00:35 +08:00
don't enclose eigen in a namespace. prefixing is the way to go.
For example Qt uses a prefix and no namespace (except for a few things)
This commit is contained in:
parent
d99d9407df
commit
4e299afb1f
@ -1,7 +1,6 @@
|
||||
#include "../src/All"
|
||||
|
||||
using namespace std;
|
||||
using namespace Eigen;
|
||||
|
||||
int main(int, char **)
|
||||
{
|
||||
|
@ -26,8 +26,6 @@
|
||||
#ifndef EIGEN_BLOCK_H
|
||||
#define EIGEN_BLOCK_H
|
||||
|
||||
namespace Eigen {
|
||||
|
||||
template<typename MatrixType> class MatrixBlock
|
||||
: public EigenBase<typename MatrixType::Scalar, MatrixBlock<MatrixType> >
|
||||
{
|
||||
@ -83,6 +81,4 @@ EigenBase<Scalar, Derived>::block(int startRow, int endRow, int startCol, int en
|
||||
return MatrixBlock<EigenBase>(ref(), startRow, endRow, startCol, endCol);
|
||||
}
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_BLOCK_H
|
||||
|
@ -28,8 +28,6 @@
|
||||
|
||||
#include "Util.h"
|
||||
|
||||
namespace Eigen {
|
||||
|
||||
template<typename _Scalar, typename Derived> class EigenBase
|
||||
{
|
||||
static const int RowsAtCompileTime = Derived::RowsAtCompileTime,
|
||||
@ -129,6 +127,4 @@ std::ostream & operator <<
|
||||
return s;
|
||||
}
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_EIGENBASE_H
|
||||
|
@ -31,9 +31,6 @@
|
||||
#include "MatrixRef.h"
|
||||
#include "MatrixStorage.h"
|
||||
|
||||
namespace Eigen
|
||||
{
|
||||
|
||||
template<typename _Scalar, int _Rows, int _Cols>
|
||||
class Matrix : public EigenBase<_Scalar, Matrix<_Scalar, _Rows, _Cols> >,
|
||||
public MatrixStorage<_Scalar, _Rows, _Cols>
|
||||
@ -129,8 +126,6 @@ EIGEN_MAKE_TYPEDEFS_ALL_SIZES(std::complex<double>, cd)
|
||||
#undef EIGEN_MAKE_TYPEDEFS_ALL_SIZES
|
||||
#undef EIGEN_MAKE_TYPEDEFS
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#include "MatrixOps.h"
|
||||
#include "ScalarOps.h"
|
||||
#include "RowAndCol.h"
|
||||
|
@ -26,8 +26,6 @@
|
||||
#ifndef EIGEN_MATRIXOPS_H
|
||||
#define EIGEN_MATRIXOPS_H
|
||||
|
||||
namespace Eigen {
|
||||
|
||||
template<typename Lhs, typename Rhs> class MatrixSum
|
||||
: public EigenBase<typename Lhs::Scalar, MatrixSum<Lhs, Rhs> >
|
||||
{
|
||||
@ -197,6 +195,4 @@ EigenBase<Scalar, Derived>::operator*=(const EigenBase<Scalar, OtherDerived> &ot
|
||||
return *static_cast<Derived*>(this);
|
||||
}
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_MATRIXOPS_H
|
||||
|
@ -26,9 +26,6 @@
|
||||
#ifndef EIGEN_MATRIXREF_H
|
||||
#define EIGEN_MATRIXREF_H
|
||||
|
||||
namespace Eigen
|
||||
{
|
||||
|
||||
template<typename MatrixType> class MatrixRef
|
||||
: public EigenBase<typename MatrixType::Scalar, MatrixRef<MatrixType> >
|
||||
{
|
||||
@ -60,6 +57,4 @@ template<typename MatrixType> class MatrixRef
|
||||
MatrixType& m_matrix;
|
||||
};
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_MATRIXREF_H
|
||||
|
@ -26,8 +26,6 @@
|
||||
#ifndef EIGEN_MATRIXSTORAGE_H
|
||||
#define EIGEN_MATRIXSTORAGE_H
|
||||
|
||||
namespace Eigen {
|
||||
|
||||
template<typename Scalar,
|
||||
int RowsAtCompileTime,
|
||||
int ColsAtCompileTime>
|
||||
@ -125,6 +123,4 @@ class MatrixStorage<Scalar, DynamicSize, DynamicSize>
|
||||
{ delete[] m_array; }
|
||||
};
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_MATRIXSTORAGE_H
|
||||
|
@ -26,8 +26,6 @@
|
||||
#ifndef EIGEN_MINOR_H
|
||||
#define EIGEN_MINOR_H
|
||||
|
||||
namespace Eigen {
|
||||
|
||||
template<typename MatrixType> class MatrixMinor
|
||||
: public EigenBase<typename MatrixType::Scalar, MatrixMinor<MatrixType> >
|
||||
{
|
||||
@ -79,6 +77,4 @@ EigenBase<Scalar, Derived>::minor(int row, int col)
|
||||
return MatrixMinor<EigenBase>(ref(), row, col);
|
||||
}
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_MINOR_H
|
||||
|
@ -26,8 +26,6 @@
|
||||
#ifndef EIGEN_ROWANDCOL_H
|
||||
#define EIGEN_ROWANDCOL_H
|
||||
|
||||
namespace Eigen {
|
||||
|
||||
template<typename MatrixType> class MatrixRow
|
||||
: public EigenBase<typename MatrixType::Scalar, MatrixRow<MatrixType> >
|
||||
{
|
||||
@ -143,6 +141,4 @@ EigenBase<Scalar, Derived>::col(int i)
|
||||
return MatrixCol<EigenBase>(ref(), i);
|
||||
}
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_ROWANDCOL_H
|
||||
|
@ -26,8 +26,6 @@
|
||||
#ifndef EIGEN_SCALAROPS_H
|
||||
#define EIGEN_SCALAROPS_H
|
||||
|
||||
namespace Eigen {
|
||||
|
||||
template<typename MatrixType> class ScalarProduct
|
||||
: public EigenBase<typename MatrixType::Scalar, ScalarProduct<MatrixType> >
|
||||
{
|
||||
@ -113,6 +111,4 @@ EIGEN_MAKE_SCALAR_OPS(std::complex<double>)
|
||||
|
||||
#undef EIGEN_MAKE_SCALAR_OPS
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_SCALAROPS_H
|
||||
|
@ -40,9 +40,6 @@
|
||||
#define EIGEN_CHECK_COL_RANGE(matrix, col) \
|
||||
assert(col >= 0 && col < (matrix).cols())
|
||||
|
||||
namespace Eigen
|
||||
{
|
||||
|
||||
//forward declarations
|
||||
template<typename _Scalar, int _Rows, int _Cols> class Matrix;
|
||||
template<typename MatrixType> class MatrixAlias;
|
||||
@ -100,7 +97,4 @@ EIGEN_INHERIT_ASSIGNMENT_OPERATOR(Derived, -=) \
|
||||
EIGEN_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, *=) \
|
||||
EIGEN_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, /=)
|
||||
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_UTIL_H
|
||||
|
@ -33,7 +33,6 @@
|
||||
#include <ctime>
|
||||
|
||||
using namespace std;
|
||||
using namespace Eigen;
|
||||
|
||||
class EigenTest : public QObject
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user