cc_hash Derived Type

type, private :: cc_hash


Contents

Source Code


Components

Type Visibility Attributes Name Initial
logical, public :: found = .false.
real(kind=dp), public :: amp = 0.0_dp
integer(kind=n_int), public, allocatable :: ind(:)
type(cc_hash), public, pointer :: next => null()

Source Code

    type cc_hash
        logical :: found = .false.
        real(dp) :: amp = 0.0_dp
        integer(n_int), allocatable :: ind(:)
        type(cc_hash), pointer :: next => null()
    end type cc_hash