![]() |
ImFusion SDK 4.3
|
#include <ImFusion/Base/LinearSystemSolvers.h>
Solver using Cholesky decomposition of the matrix (Eigen implementation) More...
Inheritance diagram for LLTEigenSolver:Solver using Cholesky decomposition of the matrix (Eigen implementation)
Public Member Functions | |
| void | solve (Eigen::SparseMatrix< float > &A, Eigen::VectorXf &b, Eigen::VectorXf &x, Eigen::VectorXf &x0) override |
Public Member Functions inherited from LinearSystemSolver | |
| void | solve (Eigen::SparseMatrix< float > &A, Eigen::SparseVector< float > &b, Eigen::VectorXf &x, Eigen::VectorXf &x0) |
| void | setVerbose (bool flag) |
Additional Inherited Members | |
Public Types inherited from LinearSystemSolver | |
| enum | Solver { LLT_FLOAT = 0 , LLT_EIGEN = 1 , CG_EIGEN = 2 , BICGSTAB_FLOAT = 3 , BICGSTAB_EIGEN = 4 , BICGSTAB_EIGEN_FLOAT = 5 , BICGSTAB_VIENNA = 6 , BICGSTAB_VIENNA_GPU = 7 } |
Protected Attributes inherited from LinearSystemSolver | |
| bool | m_verbose |
|
overridevirtual |
Implements LinearSystemSolver.