Data Types | |
| type | t_cfs_matrix |
Functions/Subroutines | |
| subroutine | prod_vec (this, xvec, bvec) |
| integer function | get_dim (this) |
| subroutine | matrix_create (this, nn) |
| subroutine | matrix_destroy (this) |
| subroutine | matrix_associate (this, ptr_irow, ptr_jcol, ptr_val) |
| integer function matrix_mod::get_dim | ( | class(t_cfs_matrix), intent(in) | this | ) |
Definition at line 100 of file matrix_mod.F.
| subroutine matrix_mod::matrix_associate | ( | class(t_cfs_matrix), intent(inout), target | this, |
| integer, dimension(:), pointer | ptr_irow, | ||
| integer, dimension(:), pointer | ptr_jcol, | ||
| double precision, dimension(:), pointer | ptr_val ) |
Definition at line 153 of file matrix_mod.F.
| subroutine matrix_mod::matrix_create | ( | class(t_cfs_matrix), intent(inout) | this, |
| integer, intent(in) | nn ) |
Definition at line 117 of file matrix_mod.F.
| subroutine matrix_mod::matrix_destroy | ( | class(t_cfs_matrix), intent(inout) | this | ) |
Definition at line 135 of file matrix_mod.F.
| subroutine matrix_mod::prod_vec | ( | class(t_cfs_matrix), intent(in) | this, |
| type(t_vector), intent(in) | xvec, | ||
| type(t_vector), intent(inout) | bvec ) |
Definition at line 68 of file matrix_mod.F.