Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=I4), | intent(out), | dimension(:) | :: | order |
subroutine init_order(order)
implicit none
integer(kind=I4), dimension(:), intent(out) :: order
integer(kind=I4) :: i, l
l = ubound(order,1)
do i = 1, l
order(i) = i
enddo
return
endsubroutine init_order