NTPoly
|
A class for solving matrix equations. More...
#include <LinearSolvers.h>
Static Public Member Functions | |
static void | CGSolver (const DistributedSparseMatrix &AMat, DistributedSparseMatrix &XMat, const DistributedSparseMatrix &BMat, const IterativeSolverParameters &solver_parameters) |
Additional Inherited Members | |
Static Protected Member Functions inherited from NTPoly::SolverBase | |
static const int * | GetIH (const DistributedSparseMatrix &dsm) |
static int * | GetIH (DistributedSparseMatrix &dsm) |
static const int * | GetIH (const IterativeSolverParameters &csp) |
static int * | GetIH (IterativeSolverParameters &csp) |
static const int * | GetIH (const FixedSolverParameters &csp) |
static int * | GetIH (FixedSolverParameters &csp) |
A class for solving matrix equations.
|
static |
Solve the matrix equation AX = B using conjugate gradient method.
AMat | the matrix A, must be symmetric, positive definite. |
XMat | the solved for matrix X. |
BMat | the right hand side. |
solver_parameters | parameters for the solver |