2008-06-23 21:25:22 +08:00
|
|
|
#ifndef EIGEN_SPARSE_MODULE_H
|
|
|
|
#define EIGEN_SPARSE_MODULE_H
|
|
|
|
|
|
|
|
#include "Core"
|
2008-12-19 04:48:02 +08:00
|
|
|
|
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
|
2008-06-23 21:25:22 +08:00
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2008-08-22 09:19:53 +08:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
|
|
|
#include <algorithm>
|
2008-06-23 21:25:22 +08:00
|
|
|
|
|
|
|
namespace Eigen {
|
|
|
|
|
2009-01-26 21:53:43 +08:00
|
|
|
/** \defgroup Sparse_Module Sparse module
|
|
|
|
*
|
2010-06-29 22:10:47 +08:00
|
|
|
*
|
2009-01-26 21:53:43 +08:00
|
|
|
*
|
|
|
|
* See the \ref TutorialSparse "Sparse tutorial"
|
|
|
|
*
|
|
|
|
* \code
|
2010-06-18 17:28:30 +08:00
|
|
|
* #include <Eigen/Sparse>
|
2009-01-26 21:53:43 +08:00
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2009-11-17 23:04:19 +08:00
|
|
|
/** The type used to identify a general sparse storage. */
|
|
|
|
struct Sparse {};
|
|
|
|
|
2008-06-27 07:22:26 +08:00
|
|
|
#include "src/Sparse/SparseUtil.h"
|
|
|
|
#include "src/Sparse/SparseMatrixBase.h"
|
2009-01-15 20:52:59 +08:00
|
|
|
#include "src/Sparse/CompressedStorage.h"
|
2008-10-04 22:23:00 +08:00
|
|
|
#include "src/Sparse/AmbiVector.h"
|
2008-06-23 21:25:22 +08:00
|
|
|
#include "src/Sparse/SparseMatrix.h"
|
2009-01-19 23:20:45 +08:00
|
|
|
#include "src/Sparse/DynamicSparseMatrix.h"
|
2009-01-15 20:52:59 +08:00
|
|
|
#include "src/Sparse/MappedSparseMatrix.h"
|
2009-01-02 16:47:09 +08:00
|
|
|
#include "src/Sparse/SparseVector.h"
|
2008-06-23 21:25:22 +08:00
|
|
|
#include "src/Sparse/CoreIterators.h"
|
2010-06-18 17:28:30 +08:00
|
|
|
#include "src/Sparse/SparseBlock.h"
|
2009-01-14 22:24:10 +08:00
|
|
|
#include "src/Sparse/SparseTranspose.h"
|
|
|
|
#include "src/Sparse/SparseCwiseUnaryOp.h"
|
|
|
|
#include "src/Sparse/SparseCwiseBinaryOp.h"
|
|
|
|
#include "src/Sparse/SparseDot.h"
|
|
|
|
#include "src/Sparse/SparseAssign.h"
|
2009-01-08 01:01:57 +08:00
|
|
|
#include "src/Sparse/SparseRedux.h"
|
2009-01-14 22:24:10 +08:00
|
|
|
#include "src/Sparse/SparseFuzzy.h"
|
2008-06-29 07:07:14 +08:00
|
|
|
#include "src/Sparse/SparseProduct.h"
|
2010-06-25 16:26:24 +08:00
|
|
|
#include "src/Sparse/SparseSparseProduct.h"
|
|
|
|
#include "src/Sparse/SparseDenseProduct.h"
|
2009-02-09 17:59:30 +08:00
|
|
|
#include "src/Sparse/SparseDiagonalProduct.h"
|
2009-11-18 21:52:52 +08:00
|
|
|
#include "src/Sparse/SparseTriangularView.h"
|
|
|
|
#include "src/Sparse/SparseSelfAdjointView.h"
|
2008-06-30 05:29:12 +08:00
|
|
|
#include "src/Sparse/TriangularSolver.h"
|
2010-06-14 07:16:46 +08:00
|
|
|
#include "src/Sparse/SparseView.h"
|
2008-10-05 21:38:38 +08:00
|
|
|
|
2008-06-23 21:25:22 +08:00
|
|
|
} // namespace Eigen
|
|
|
|
|
2008-12-19 04:48:02 +08:00
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
|
2008-06-23 21:25:22 +08:00
|
|
|
#endif // EIGEN_SPARSE_MODULE_H
|
2009-12-02 07:00:29 +08:00
|
|
|
|