gen_all_excits Subroutine

public subroutine gen_all_excits(nI, n_excits, det_list)

@brief Return all configurations that are connected to nI as array of iluts (det_list(0:niftot, n_excits)).

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: nI(nel)
integer, intent(out) :: n_excits
integer(kind=n_int), intent(out), allocatable :: det_list(:,:)

Contents

Source Code


Source Code

    subroutine gen_all_excits(nI, n_excits, det_list)
        integer, intent(in) :: nI(nel)
        integer, intent(out) :: n_excits
        integer(n_int), intent(out), allocatable :: det_list(:, :)

        call gen_excits(nI, n_excits, det_list)
    end subroutine gen_all_excits