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
|
|
|
|
2008-10-05 13:38:38 +00:00
|
|
|
#ifdef EIGEN_CHOLMOD_SUPPORT
|
|
|
|
|
extern "C" {
|
|
|
|
|
#include "cholmod.h"
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef EIGEN_TAUCS_SUPPORT
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
#include "taucs.h"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef min
|
|
|
|
|
#undef min
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef max
|
|
|
|
|
#undef max
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
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-10-04 14:23:00 +00:00
|
|
|
#include "src/Sparse/AmbiVector.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-10-05 13:38:38 +00:00
|
|
|
#include "src/Sparse/SparseCholesky.h"
|
|
|
|
|
|
|
|
|
|
#ifdef EIGEN_CHOLMOD_SUPPORT
|
|
|
|
|
# include "src/Sparse/CholmodSupport.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef EIGEN_TAUCS_SUPPORT
|
|
|
|
|
# include "src/Sparse/TaucsSupport.h"
|
|
|
|
|
#endif
|
2008-06-23 13:25:22 +00:00
|
|
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
|
|
|
|
|
|
#endif // EIGEN_SPARSE_MODULE_H
|