GetFEM
5.4.2
|
SuperLU interface for getfem. More...
Go to the source code of this file.
Classes | |
class | gmm::SuperLU_factor< T > |
Factorization of a sparse matrix with SuperLU. More... | |
Functions | |
template<typename MAT , typename V1 , typename V2 > | |
int | gmm::SuperLU_solve (const MAT &A, const V1 &X, const V2 &B, double &rcond_, int permc_spec=3) |
solve a sparse linear system AX=B (float, double, complex<float> or complex<double>) via SuperLU. More... | |
SuperLU interface for getfem.
Definition in file getfem_superlu.h.
int gmm::SuperLU_solve | ( | const MAT & | A, |
const V1 & | X, | ||
const V2 & | B, | ||
double & | rcond_, | ||
int | permc_spec = 3 |
||
) |
solve a sparse linear system AX=B (float, double, complex<float> or complex<double>) via SuperLU.
A | the matrix (a copy is made if A is not a gmm::csc_matrix) |
X | the solution. |
B | the right hand side. |
rcond_ | contains on output an estimate of the condition number of A. |
permc_spec | specify the kind of renumbering than SuperLU should do. |
Definition at line 64 of file getfem_superlu.h.