FE-Project
|
Public Member Functions | |
procedure, public | init (this, mat, eps, storage_format) |
procedure, public | final (this) |
procedure, public | print (a) |
procedure, public | replaceval (a, i, j, v) |
procedure, public | getval (a, i, j) |
procedure, public | getstorageformatid (a) |
Public Attributes | |
integer | m |
Number of row of original matrix. | |
integer | n |
Number of column of original matrix. | |
integer | nnz |
Number of nonzero of the matrix. | |
real(rp), dimension(:), allocatable | val |
Array storing the values of the nonzeros. | |
integer, dimension(:), allocatable | colidx |
Array saving the column indices of the nonzeros. | |
integer, dimension(:), allocatable | rowptr |
Array saving the start and end pointers of the nonzeros of the rows. | |
integer | rowptrsize |
Size of rowPtr. | |
integer | col_size |
Definition at line 32 of file scale_sparsemat.F90.
procedure, public scale_sparsemat::sparsemat::init | ( | class(sparsemat), intent(inout) | this, |
real(rp), dimension(:,:), intent(in) | mat, | ||
real(rp), intent(in), optional | eps, | ||
character(len=*), intent(in), optional | storage_format ) |
Definition at line 48 of file scale_sparsemat.F90.
procedure, public scale_sparsemat::sparsemat::final | ( | class(sparsemat), intent(inout) | this | ) |
Definition at line 49 of file scale_sparsemat.F90.
procedure, public scale_sparsemat::sparsemat::print | ( | class(sparsemat), intent(in) | a | ) |
Definition at line 50 of file scale_sparsemat.F90.
procedure, public scale_sparsemat::sparsemat::replaceval | ( | class(sparsemat), intent(inout) | a, |
integer, intent(in) | i, | ||
integer, intent(in) | j, | ||
real(rp), intent(in) | v ) |
Definition at line 51 of file scale_sparsemat.F90.
procedure, public scale_sparsemat::sparsemat::getval | ( | class(sparsemat), intent(in) | a, |
integer, intent(in) | i, | ||
integer, intent(in) | j ) |
Definition at line 52 of file scale_sparsemat.F90.
procedure, public scale_sparsemat::sparsemat::getstorageformatid | ( | class(sparsemat), intent(in) | a | ) |
Definition at line 53 of file scale_sparsemat.F90.
integer scale_sparsemat::sparsemat::m |
Number of row of original matrix.
Definition at line 33 of file scale_sparsemat.F90.
integer scale_sparsemat::sparsemat::n |
Number of column of original matrix.
Definition at line 34 of file scale_sparsemat.F90.
integer scale_sparsemat::sparsemat::nnz |
Number of nonzero of the matrix.
Definition at line 35 of file scale_sparsemat.F90.
real(rp), dimension(:), allocatable scale_sparsemat::sparsemat::val |
Array storing the values of the nonzeros.
Definition at line 36 of file scale_sparsemat.F90.
integer, dimension(:), allocatable scale_sparsemat::sparsemat::colidx |
Array saving the column indices of the nonzeros.
Definition at line 37 of file scale_sparsemat.F90.
integer, dimension(:), allocatable scale_sparsemat::sparsemat::rowptr |
Array saving the start and end pointers of the nonzeros of the rows.
Definition at line 40 of file scale_sparsemat.F90.
integer scale_sparsemat::sparsemat::rowptrsize |
integer scale_sparsemat::sparsemat::col_size |
Definition at line 44 of file scale_sparsemat.F90.