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