get_spawn_factor Function

public function get_spawn_factor(j) result(f)

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: j

Return Value real(kind=dp)


Source Code

    function get_spawn_factor(j) result(f)
        ! Input: j - index of the CSF
        ! Output: f - spawn scaling factor for CSF j so far
        implicit none
        integer, intent(in) :: j
        real(dp) :: f

        f = global_determinant_data(pos_scaling_factor, j)
    end function get_spawn_factor