sparse_matrix_real Derived Type

type, public :: sparse_matrix_real


Contents

Source Code


Components

Type Visibility Attributes Name Initial
real(kind=dp), public, allocatable, dimension(:) :: elements
integer, public, allocatable, dimension(:) :: positions
integer, public :: num_elements

Source Code

    type sparse_matrix_real
        HElement_t(dp), allocatable, dimension(:) :: elements
        integer, allocatable, dimension(:) :: positions
        integer :: num_elements
    end type sparse_matrix_real