Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A quick fix for incorrect usage of real(i_kind) in mg_input.f90 #760

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading