aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/SuperLUSupport
blob: a77ea4def6050463b5d88e73d199b8cb290a6b0e (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef EIGEN_SUPERLUSUPPORT_MODULE_H
#define EIGEN_SUPERLUSUPPORT_MODULE_H

#include "SparseExtra"

#include "../../Eigen/src/Core/util/DisableMSVCWarnings.h"

typedef int int_t;
#include <slu_Cnames.h>
#include <supermatrix.h>
#include <slu_util.h>

namespace SuperLU_S {
#include <slu_sdefs.h>
}
namespace SuperLU_D {
#include <slu_ddefs.h>
}
namespace SuperLU_C {
#include <slu_cdefs.h>
}
namespace SuperLU_Z {
#include <slu_zdefs.h>
}
namespace Eigen { struct SluMatrix; }

namespace Eigen {

/** \ingroup Unsupported_modules
  * \defgroup SuperLUSupport_Module Super LU support
  *
  *
  *
  * \code
  * #include <Eigen/SuperLUSupport>
  * \endcode
  */

struct SuperLU {};

#include "src/SparseExtra/SuperLUSupport.h"

} // namespace Eigen

#include "../../Eigen/src/Core/util/EnableMSVCWarnings.h"

#endif // EIGEN_SUPERLUSUPPORT_MODULE_H