2008-06-23 13:25:22 +00:00
|
|
|
#ifndef EIGEN_SPARSE_MODULE_H
|
|
|
|
|
#define EIGEN_SPARSE_MODULE_H
|
|
|
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
#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 {
|
|
|
|
|
|
2008-06-26 23:22:26 +00:00
|
|
|
#include "src/Sparse/SparseUtil.h"
|
|
|
|
|
#include "src/Sparse/SparseMatrixBase.h"
|
2008-06-23 13:25:22 +00:00
|
|
|
#include "src/Sparse/SparseArray.h"
|
2008-09-02 15:28:49 +00:00
|
|
|
#include "src/Sparse/SparseBlock.h"
|
2008-06-23 13:25:22 +00:00
|
|
|
#include "src/Sparse/SparseMatrix.h"
|
2008-06-26 23:22:26 +00:00
|
|
|
#include "src/Sparse/HashMatrix.h"
|
|
|
|
|
#include "src/Sparse/LinkedVectorMatrix.h"
|
2008-06-23 13:25:22 +00:00
|
|
|
#include "src/Sparse/CoreIterators.h"
|
2008-06-26 23:22:26 +00:00
|
|
|
#include "src/Sparse/SparseSetter.h"
|
2008-06-28 23:07:14 +00:00
|
|
|
#include "src/Sparse/SparseProduct.h"
|
2008-06-29 21:29:12 +00:00
|
|
|
#include "src/Sparse/TriangularSolver.h"
|
2008-06-23 13:25:22 +00:00
|
|
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
|
|
|
|
|
|
#endif // EIGEN_SPARSE_MODULE_H
|