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:
Benoit Jacob 2007-09-27 19:24:57 +00:00
parent d99d9407df
commit 4e299afb1f
12 changed files with 0 additions and 46 deletions

View File

@ -1,7 +1,6 @@
#include "../src/All"
using namespace std;
using namespace Eigen;
int main(int, char **)
{

View File

@ -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

View File

@ -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

View File

@ -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"

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -33,7 +33,6 @@
#include <ctime>
using namespace std;
using namespace Eigen;
class EigenTest : public QObject
{