Skip to content

Commit

Permalink
Reverted some unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed Jul 3, 2018
1 parent fd859b4 commit 7536149
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/unresr.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1258,6 +1258,7 @@ subroutine intr(e,dx,gxx,gnox,ggx,gfx,inow,ne,int,a)
! internals
integer::i1,i,i2
real(kr),parameter::small=1.e-8_kr

i1=inow
do i=2,ne
i2=i1+6
Expand All @@ -1268,7 +1269,7 @@ subroutine intr(e,dx,gxx,gnox,ggx,gfx,inow,ne,int,a)
call terp1(a(i1),a(i1+4),a(i2),a(i2+4),e,ggx,int)
call terp1(a(i1),a(i1+5),a(i2),a(i2+5),e,gfx,int)
endif
if (i.lt.ne) i1=i2
if (i.lt.ne) i1=i2
enddo
if (gxx.lt.small) gxx=0
if (gfx.lt.small) gfx=0
Expand Down

0 comments on commit 7536149

Please sign in to comment.