Skip to content

Commit

Permalink
mods for nag compiler failure (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
apcraig authored and mhrib committed Sep 21, 2018
1 parent 0c4af68 commit 2e6e351
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cicecore/cicedynB/infrastructure/ice_grid.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1232,8 +1232,8 @@ subroutine rectgrid

! land in the upper left and lower right corners,
! otherwise open boundaries
imid = aint(real(nx_global)/c2,kind=int_kind)
jmid = aint(real(ny_global)/c2,kind=int_kind)
imid = nint(aint(real(nx_global)/c2))
jmid = nint(aint(real(ny_global)/c2))

do j = 3,ny_global-2
do i = 3,nx_global-2
Expand Down

0 comments on commit 2e6e351

Please sign in to comment.