diff options
author | Gael Guennebaud <g.gael@free.fr> | 2008-08-28 23:25:27 +0000 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2008-08-28 23:25:27 +0000 |
commit | 409e82be06bd6e0e3772f57cc3cc19c35743d09c (patch) | |
tree | 921ce78ed8534d33c1e1a74b725839c83615bc05 /Eigen/src/Sparse | |
parent | 7ea821d18e6b1294acf170b805c3c132c47f2f77 (diff) |
doc and use sed to clean the class hierarchy instead of
preprocessor directives.
Diffstat (limited to 'Eigen/src/Sparse')
-rw-r--r-- | Eigen/src/Sparse/HashMatrix.h | 4 | ||||
-rw-r--r-- | Eigen/src/Sparse/LinkedVectorMatrix.h | 4 | ||||
-rw-r--r-- | Eigen/src/Sparse/SparseMatrix.h | 4 | ||||
-rw-r--r-- | Eigen/src/Sparse/SparseProduct.h | 4 |
4 files changed, 0 insertions, 16 deletions
diff --git a/Eigen/src/Sparse/HashMatrix.h b/Eigen/src/Sparse/HashMatrix.h index 47c673c61..1d6d33cce 100644 --- a/Eigen/src/Sparse/HashMatrix.h +++ b/Eigen/src/Sparse/HashMatrix.h @@ -43,11 +43,7 @@ struct ei_traits<HashMatrix<_Scalar, _Flags> > // TODO reimplement this class using custom linked lists template<typename _Scalar, int _Flags> class HashMatrix -#ifndef EIGEN_PARSED_BY_DOXYGEN : public SparseMatrixBase<HashMatrix<_Scalar, _Flags> > -#else - : public SparseMatrixBase -#endif { public: EIGEN_GENERIC_PUBLIC_INTERFACE(HashMatrix) diff --git a/Eigen/src/Sparse/LinkedVectorMatrix.h b/Eigen/src/Sparse/LinkedVectorMatrix.h index 2ffb1d930..dc34aced6 100644 --- a/Eigen/src/Sparse/LinkedVectorMatrix.h +++ b/Eigen/src/Sparse/LinkedVectorMatrix.h @@ -53,11 +53,7 @@ struct LinkedVectorChunk template<typename _Scalar, int _Flags> class LinkedVectorMatrix -#ifndef EIGEN_PARSED_BY_DOXYGEN : public SparseMatrixBase<LinkedVectorMatrix<_Scalar,_Flags> > -#else - : public SparseMatrixBase -#endif { public: EIGEN_GENERIC_PUBLIC_INTERFACE(LinkedVectorMatrix) diff --git a/Eigen/src/Sparse/SparseMatrix.h b/Eigen/src/Sparse/SparseMatrix.h index acf0e10b2..9d4f325a3 100644 --- a/Eigen/src/Sparse/SparseMatrix.h +++ b/Eigen/src/Sparse/SparseMatrix.h @@ -53,11 +53,7 @@ struct ei_traits<SparseMatrix<_Scalar, _Flags> > template<typename _Scalar, int _Flags> class SparseMatrix -#ifndef EIGEN_PARSED_BY_DOXYGEN : public SparseMatrixBase<SparseMatrix<_Scalar, _Flags> > -#else - : public SparseMatrixBase -#endif { public: EIGEN_GENERIC_PUBLIC_INTERFACE(SparseMatrix) diff --git a/Eigen/src/Sparse/SparseProduct.h b/Eigen/src/Sparse/SparseProduct.h index b19cb87da..7be5ecefd 100644 --- a/Eigen/src/Sparse/SparseProduct.h +++ b/Eigen/src/Sparse/SparseProduct.h @@ -88,11 +88,7 @@ struct ei_traits<Product<LhsNested, RhsNested, SparseProduct> > }; template<typename LhsNested, typename RhsNested> class Product<LhsNested,RhsNested,SparseProduct> : ei_no_assignment_operator, -#ifndef EIGEN_PARSED_BY_DOXYGEN public MatrixBase<Product<LhsNested, RhsNested, SparseProduct> > -#else - public MatrixBase -#endif { public: |