idx_local_xxf Function

private elemental function idx_local_xxf(lo, ig, isign, ik, il, ie, is)

Return whether a point is local to a processor given the dimensional indices

Arguments

Type IntentOptional Attributes Name
type(xxf_layout_type), intent(in) :: lo
integer, intent(in) :: ig
integer, intent(in) :: isign
integer, intent(in) :: ik
integer, intent(in) :: il
integer, intent(in) :: ie
integer, intent(in) :: is

Return Value logical


Contents

Source Code


Source Code

  elemental function idx_local_xxf (lo, ig, isign, ik, il, ie, is)
    implicit none
    logical :: idx_local_xxf
    type (xxf_layout_type), intent (in) :: lo
    integer, intent (in) :: ig, isign, ik, il, ie, is
    idx_local_xxf = idx_local (lo, idx(lo, ig, isign, ik, il, ie, is))
  end function idx_local_xxf