Public Member Functions | |
MatrixPastix () | |
Default constructor. | |
~MatrixPastix () | |
destructor | |
void | CreateCommunicator () |
void | Clear () |
Clearing factorization. | |
void | CallPastix (const MPI_Comm &, pastix_int_t *colptr, pastix_int_t *row, T *val, T *b, pastix_int_t nrhs) |
void | HideMessages () |
no message will be displayed | |
void | ShowMessages () |
Low level of display. | |
void | RefineSolution () |
You can require that solution is refined after LU resolution. | |
void | DoNotRefineSolution () |
You can require that solution is not refined (faster). | |
template<class T0 , class Prop , class Storage , class Allocator , class Tint > | |
void | FindOrdering (Matrix< T0, Prop, Storage, Allocator > &mat, Vector< Tint > &numbers, bool keep_matrix=false) |
Returning ordering found by Scotch. | |
template<class Storage , class Allocator > | |
void | FactorizeMatrix (Matrix< T, General, Storage, Allocator > &mat, bool keep_matrix=false) |
Factorization of unsymmetric matrix. | |
template<class Storage , class Allocator > | |
void | FactorizeMatrix (Matrix< T, Symmetric, Storage, Allocator > &mat, bool keep_matrix=false) |
Factorization of symmetric matrix. | |
template<class Allocator2 > | |
void | Solve (Vector< T, VectFull, Allocator2 > &x) |
solving A x = b (A is already factorized) | |
template<class Allocator2 , class Transpose_status > | |
void | Solve (const Transpose_status &TransA, Vector< T, VectFull, Allocator2 > &x) |
solving A x = b or A^T x = b (A is already factorized) | |
template<> | |
void | CallPastix (const MPI_Comm &comm, pastix_int_t *colptr, pastix_int_t *row, double *val, double *b, pastix_int_t nrhs) |
template<> | |
void | CallPastix (const MPI_Comm &comm, pastix_int_t *colptr, pastix_int_t *row, complex< double > *val, complex< double > *b, pastix_int_t nrhs) |
Protected Attributes | |
pastix_data_t * | pastix_data |
pastix structure | |
pastix_int_t | iparm [64] |
options (integers) | |
double | dparm [64] |
options (floats) | |
pastix_int_t | n |
number of columns | |
MPI_Comm | comm_facto |
MPI communicator. | |
Vector< pastix_int_t > | perm |
permutation arrays | |
Vector< pastix_int_t > | invp |
Vector< pastix_int_t > | col_num |
local to global | |
bool | distributed |
if true, resolution on several nodes | |
int | print_level |
level of display | |
bool | refine_solution |
if true, solution is refined |
Definition at line 33 of file Pastix.hxx.