Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer(kind=int32), | private, | allocatable | :: | ind(:) | |||
integer(kind=int32), | private | :: | nnz | = | 0 | ||
integer(kind=int32), | private | :: | num_row | = | 0 | ||
integer(kind=int32), | private, | allocatable | :: | ptr(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_crs_adjacency_element), | intent(in) | :: | self | |||
integer(kind=int32), | intent(in) | :: | i |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_crs_adjacency_element), | intent(in) | :: | self | |||
integer(kind=int32), | intent(in) | :: | i |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_crs_adjacency_element), | intent(in) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_crs_adjacency_element), | intent(inout) | :: | self | |||
type(holder_elements), | intent(in) | :: | elements(:) |
type :: type_crs_adjacency_element private integer(int32) :: nnz = 0 integer(int32) :: num_row = 0 integer(int32), allocatable :: ptr(:) integer(int32), allocatable :: ind(:) contains procedure, pass(self), public :: initialize => initialize_crs_adjacency procedure, pass(self), public :: get_num_elements => get_num_elements_impl procedure, pass(self), public :: get_degree => get_degree_impl procedure, pass(self), public :: get_neighbors => get_neighbors_impl end type type_crs_adjacency_element