Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=n_int), | intent(in) | :: | ilut(0:niftot) |
pure function any_run_is_initiator(ilut) result(t)
integer(n_int), intent(in) :: ilut(0:niftot)
integer :: run
logical :: t
t = .false.
do run = 1, inum_runs
if (test_flag(ilut, get_initiator_flag_by_run(run))) then
t = .true.
return
end if
end do
end function any_run_is_initiator