| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer(kind=ip), | intent(in) | :: | i |
coordinates |
||
| integer(kind=ip), | intent(in) | :: | j |
coordinates |
pure function get_cell(i,j) result(a) integer(ip),intent(in) :: i,j !! coordinates character(len=1) :: a if (slopes) then a = array(i,j) else a = '.' ! ignore the slopes for part b end if end function get_cell