C+ C NAME: C ArrR4Constant C PURPOSE: C Initialize real*4 array to constant C CALLING SEQUENCE: subroutine ArrR4Constant(N,R,C) C CALLS: C BadR4 C SEE ALSO: C Array_Info C- integer N real R real C(*) !$omp parallel private(bad,I) bad = BadR4() if (N .lt. 0) then !$omp do schedule(static) do I=1,-N if (C(I) .ne. bad) C(I) = R end do !$omp end do nowait else !$omp do schedule(static) do I=1,N C(I) = R end do !$omp end do nowait end if !$omp end parallel return end