idx_gf Function

private elemental function idx_gf(lo, ik, it)

FIXME : Add documentation

Arguments

Type IntentOptional Attributes Name
type(gf_layout_type), intent(in) :: lo
integer, intent(in) :: ik
integer, intent(in) :: it

Return Value integer


Contents

Source Code


Source Code

  elemental function idx_gf (lo, ik, it)
    implicit none
    integer :: idx_gf
    type (gf_layout_type), intent (in) :: lo
    integer, intent (in) :: ik, it
    idx_gf = (ik-1)*lo%ntheta0 + it
  end function idx_gf