Skip to content

Commit

Permalink
Fix incorrect usage of real(i_kind) in mg_input.f90 (#760)
Browse files Browse the repository at this point in the history
  • Loading branch information
TingLei-daprediction committed Aug 6, 2024
1 parent 04896a7 commit e82365d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mgbf/mg_input.f90
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ subroutine input_2d &
integer(i_kind),intent(in):: imax0
integer(i_kind),intent(in):: ampl
real(r_kind),dimension(imin:imax,jmin:jmax),intent(out):: V
real(i_kind):: ng,mg,L,m,n
integer(i_kind):: ng,mg,L,m,n
!-----------------------------------------------------------------------

do m=imin,jmax
Expand Down Expand Up @@ -134,7 +134,7 @@ subroutine input_3d &
integer(i_kind),intent(in):: imax0
integer(i_kind),intent(in):: ampl,incrm
real(r_kind),dimension(lmin:lmax,imin:imax,jmin:jmax),intent(out):: V
real(i_kind):: ng,mg,L,m,n
integer(i_kind):: ng,mg,L,m,n
!-----------------------------------------------------------------------

do l=lmin,lmax
Expand Down

0 comments on commit e82365d

Please sign in to comment.