trial_hashtable Derived Type

type, public :: trial_hashtable


Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer(kind=n_int), public, allocatable, dimension(:, :) :: states
integer, public :: nclash

Source Code

    type trial_hashtable
        ! All the states with this hash value.
        integer(n_int), allocatable, dimension(:, :) :: states
        ! The number of clashes for ths hash value.
        integer :: nclash
    end type trial_hashtable