aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Sparse
blob: 53bc4eccc54f8a254f8d67fc710dbbf9bead87f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef EIGEN_SPARSE_MODULE_H
#define EIGEN_SPARSE_MODULE_H

#include "Core"
#include <vector>
#include <map>
#include <cstdlib>
#include <cstring>
#include <algorithm>

namespace Eigen {

#include "src/Sparse/SparseUtil.h"
#include "src/Sparse/SparseMatrixBase.h"
#include "src/Sparse/SparseArray.h"
#include "src/Sparse/SparseMatrix.h"
#include "src/Sparse/HashMatrix.h"
#include "src/Sparse/LinkedVectorMatrix.h"
#include "src/Sparse/CoreIterators.h"
#include "src/Sparse/SparseSetter.h"
#include "src/Sparse/SparseProduct.h"
#include "src/Sparse/TriangularSolver.h"

} // namespace Eigen

#endif // EIGEN_SPARSE_MODULE_H