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
2011-02-22 09:31:22 -05:00
#include "src/Core/util/DisableStupidWarnings.h"
2008-12-18 20:48:02 +00:00
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
2011-01-31 08:44:49 -05:00
#ifdef EIGEN2_SUPPORT
#define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
#endif
2011-01-27 17:36:58 +01:00
#ifndef EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
#error The sparse module API is not stable yet. To use it anyway, please define the EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET preprocessor token.
#endif
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
2011-02-22 09:31:22 -05:00
#include "src/Core/util/ReenableStupidWarnings.h"
2008-12-18 20:48:02 +00:00
2008-06-23 13:25:22 +00:00
#endif // EIGEN_SPARSE_MODULE_H
2009-12-01 18:00:29 -05:00