eigen/unsupported/Eigen/SuperLUSupport
Romain Bossart c6503e03eb Updates to the Sparse unsupported solvers module.
* change Sparse* specialization's signatures from <..., int Backend> to <..., typename Backend>. Update SparseExtra accordingly to use structs instead of the SparseBackend enum.
* add SparseLDLT Cholmod specialization
* for Cholmod and UmfPack, SparseLU, SparseLLT and SparseLDLT now use ei_solve_retval and have the new solve() method (to be closer to the 3.0 API).

* fix doc
2010-10-04 20:56:54 +02:00

48 lines
847 B
Plaintext

#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