![]() |
Fast Auxiliary Space Preconditioning 2.7.7 Aug/28/2022
|
Check properties of sparse matrices. More...
Go to the source code of this file.
Functions | |
INT | fasp_check_diagpos (const dCSRmat *A) |
Check positivity of diagonal entries of a CSR sparse matrix. More... | |
SHORT | fasp_check_diagzero (const dCSRmat *A) |
Check if a CSR sparse matrix has diagonal entries that are very close to zero. More... | |
INT | fasp_check_diagdom (const dCSRmat *A) |
Check whether a matrix is diagonally dominant. More... | |
INT | fasp_check_symm (const dCSRmat *A) |
Check symmetry of a sparse matrix of CSR format. More... | |
void | fasp_check_dCSRmat (const dCSRmat *A) |
Check whether an dCSRmat matrix is supported or not. More... | |
SHORT | fasp_check_iCSRmat (const iCSRmat *A) |
Check whether an iCSRmat matrix is valid or not. More... | |
void | fasp_check_ordering (dCSRmat *A) |
Check whether each row of A is in ascending order w.r.t. column indices. More... | |
Check properties of sparse matrices.
Copyright (C) 2009–Present by the FASP team. All rights reserved.
Definition in file BlaSparseCheck.c.
void fasp_check_dCSRmat | ( | const dCSRmat * | A | ) |
Check whether an dCSRmat matrix is supported or not.
A | Pointer to the matrix in dCSRmat format |
Definition at line 281 of file BlaSparseCheck.c.
Check whether a matrix is diagonally dominant.
INT fasp_check_diagdom (const dCSRmat *A)
A | Pointer to the dCSRmat matrix |
Definition at line 114 of file BlaSparseCheck.c.
Check positivity of diagonal entries of a CSR sparse matrix.
A | Pointer to dCSRmat matrix |
Definition at line 35 of file BlaSparseCheck.c.
Check if a CSR sparse matrix has diagonal entries that are very close to zero.
A | pointer to the dCSRmat matrix |
Definition at line 72 of file BlaSparseCheck.c.
Check whether an iCSRmat matrix is valid or not.
A | Pointer to the matrix in iCSRmat format |
Definition at line 318 of file BlaSparseCheck.c.
void fasp_check_ordering | ( | dCSRmat * | A | ) |
Check whether each row of A is in ascending order w.r.t. column indices.
A | Pointer to the dCSRmat matrix |
Definition at line 357 of file BlaSparseCheck.c.
Check symmetry of a sparse matrix of CSR format.
A | Pointer to the dCSRmat matrix |
Definition at line 159 of file BlaSparseCheck.c.