perturbed_state Derived Type

type, public :: perturbed_state


Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public :: nDets
integer(kind=n_int), public, allocatable :: dets(:,:)

Source Code

    type perturbed_state
        ! type for a state that is used as a reference state for the overlap
        integer :: nDets
        integer(n_int), allocatable :: dets(:, :)
    end type perturbed_state