Go to the source code of this file.
Classes | |
class | Eigen::CholmodBase< MatrixType_, UpLo_, Derived > |
The base class for the direct Cholesky factorization of Cholmod. More... | |
class | Eigen::CholmodDecomposition< MatrixType_, UpLo_ > |
A general Cholesky factorization and solver based on Cholmod. More... | |
class | Eigen::CholmodSimplicialLDLT< MatrixType_, UpLo_ > |
A simplicial direct Cholesky (LDLT) factorization and solver based on Cholmod. More... | |
class | Eigen::CholmodSimplicialLLT< MatrixType_, UpLo_ > |
A simplicial direct Cholesky (LLT) factorization and solver based on Cholmod. More... | |
class | Eigen::CholmodSupernodalLLT< MatrixType_, UpLo_ > |
A supernodal Cholesky (LLT) factorization and solver based on Cholmod. More... | |
Namespaces | |
Eigen | |
: InteropHeaders | |
Eigen::internal | |
Macros | |
#define | EIGEN_CHOLMOD_SPECIALIZE0(ret, name) |
#define | EIGEN_CHOLMOD_SPECIALIZE1(ret, name, t1, a1) |
Enumerations | |
enum | Eigen::CholmodMode { Eigen::CholmodAuto , Eigen::CholmodSimplicialLLt , Eigen::CholmodSupernodalLLt , Eigen::CholmodLDLt } |
Functions | |
template<typename StorageIndex_ > | |
int | Eigen::internal::cm_factorize_p (cholmod_sparse *A, double beta[2], StorageIndex_ *fset, std::size_t fsize, cholmod_factor *L, cholmod_common &Common) |
template<> | |
int | Eigen::internal::cm_factorize_p< SuiteSparse_long > (cholmod_sparse *A, double beta[2], SuiteSparse_long *fset, std::size_t fsize, cholmod_factor *L, cholmod_common &Common) |
template<typename StorageIndex_ > | |
cholmod_dense * | Eigen::internal::cm_solve (int sys, cholmod_factor &L, cholmod_dense &B, cholmod_common &Common) |
template<> | |
cholmod_dense * | Eigen::internal::cm_solve< SuiteSparse_long > (int sys, cholmod_factor &L, cholmod_dense &B, cholmod_common &Common) |
template<typename StorageIndex_ > | |
cholmod_sparse * | Eigen::internal::cm_spsolve (int sys, cholmod_factor &L, cholmod_sparse &B, cholmod_common &Common) |
template<> | |
cholmod_sparse * | Eigen::internal::cm_spsolve< SuiteSparse_long > (int sys, cholmod_factor &L, cholmod_sparse &B, cholmod_common &Common) |
template<typename Scalar_ , int Options_, typename Index_ > | |
const cholmod_sparse | Eigen::viewAsCholmod (const SparseMatrix< Scalar_, Options_, Index_ > &mat) |
template<typename Scalar_ , int Options_, typename Index_ , unsigned int UpLo> | |
cholmod_sparse | Eigen::viewAsCholmod (const SparseSelfAdjointView< const SparseMatrix< Scalar_, Options_, Index_ >, UpLo > &mat) |
template<typename Scalar_ , int Options_, typename Index_ > | |
const cholmod_sparse | Eigen::viewAsCholmod (const SparseVector< Scalar_, Options_, Index_ > &mat) |
template<typename Derived > | |
cholmod_dense | Eigen::viewAsCholmod (MatrixBase< Derived > &mat) |
template<typename Scalar_ , int Options_, typename StorageIndex_ > | |
cholmod_sparse | Eigen::viewAsCholmod (Ref< SparseMatrix< Scalar_, Options_, StorageIndex_ > > mat) |
template<typename Scalar , int Flags, typename StorageIndex > | |
Map< SparseMatrix< Scalar, Flags, StorageIndex > > | Eigen::viewAsEigen (cholmod_sparse &cm) |
#define EIGEN_CHOLMOD_SPECIALIZE0 | ( | ret, | |
name | |||
) |
Definition at line 171 of file CholmodSupport.h.
#define EIGEN_CHOLMOD_SPECIALIZE1 | ( | ret, | |
name, | |||
t1, | |||
a1 | |||
) |
Definition at line 175 of file CholmodSupport.h.