Skip to content

Commit

Permalink
Remove unused variables (mflag)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pelle Bo Regener committed Aug 28, 2018
1 parent ef5c3a9 commit e79b2b3
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/bspline_sub_module.f90
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ pure subroutine db2val(xval,yval,idx,idy,tx,ty,nx,ny,kx,ky,bcoef,f,iflag,inbvx,i
logical,intent(in),optional :: extrap !! if extrapolation is allowed
!! (if not present, default is False)

integer :: k, lefty, mflag, kcol
integer :: k, lefty, kcol
real(wp),dimension(ky) :: temp
real(wp),dimension(3*max(kx,ky)) :: work

Expand Down Expand Up @@ -799,7 +799,7 @@ pure subroutine db3val(xval,yval,zval,idx,idy,idz,&
real(wp),dimension(kz) :: temp2
real(wp),dimension(3*max(kx,ky,kz)) :: work

integer :: lefty, leftz, mflag,&
integer :: lefty, leftz, &
kcoly, kcolz, j, k

f = 0.0_wp
Expand Down Expand Up @@ -1078,8 +1078,8 @@ pure subroutine db4val(xval,yval,zval,qval,&
real(wp),dimension(kz,kq) :: temp2
real(wp),dimension(kq) :: temp3
real(wp),dimension(3*max(kx,ky,kz,kq)) :: work
integer :: lefty, leftz, leftq, mflag,&
kcoly, kcolz, kcolq, j, k, q
integer :: lefty, leftz, leftq, &
kcoly, kcolz, kcolq, j, k, q

f = 0.0_wp

Expand Down Expand Up @@ -1435,7 +1435,7 @@ pure subroutine db5val(xval,yval,zval,qval,rval,&
real(wp),dimension(kq,kr) :: temp3
real(wp),dimension(kr) :: temp4
real(wp),dimension(3*max(kx,ky,kz,kq,kr)) :: work
integer :: lefty, leftz, leftq, leftr, mflag,&
integer :: lefty, leftz, leftq, leftr, &
kcoly, kcolz, kcolq, kcolr, j, k, q, r

f = 0.0_wp
Expand Down Expand Up @@ -1850,7 +1850,6 @@ pure subroutine db6val(xval,yval,zval,qval,rval,sval,&
real(wp),dimension(3*max(kx,ky,kz,kq,kr,ks)) :: work

integer :: lefty,leftz,leftq,leftr,lefts,&
mflag,&
kcoly,kcolz,kcolq,kcolr,kcols,&
j,k,q,r,s

Expand Down

0 comments on commit e79b2b3

Please sign in to comment.