pc_has_it Function

private function pc_has_it(self, it)

Determine if we have any cells with passed it.

Type Bound

pc_type

Arguments

Type IntentOptional Attributes Name
class(pc_type), intent(in) :: self
integer, intent(in) :: it

Return Value logical


Contents

Source Code


Source Code

  function pc_has_it(self,it)
    implicit none
    class(pc_type), intent(in) :: self
    integer, intent(in) :: it
    logical :: pc_has_it
    pc_has_it=any(self%is_local(it,:)==1)
  end function pc_has_it