core_hashtable Derived Type

type, public :: core_hashtable


Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public, allocatable, dimension(:) :: ind
integer, public :: nclash

Source Code

    type core_hashtable
        ! The indices of states with this hash table.
        integer, allocatable, dimension(:) :: ind
        ! The number of clashes for this hash value.
        integer :: nclash
    end type core_hashtable