Determine if we have any cells with passed ik.
This just says if we can see index not that we have any data there
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(pc_type), | intent(in) | :: | self | |||
integer, | intent(in) | :: | ik |
function pc_has_ik(self,ik)
implicit none
class(pc_type), intent(in) :: self
integer, intent(in) :: ik
logical :: pc_has_ik
pc_has_ik=any(self%is_local(:,ik)==1)
end function pc_has_ik