Skip to content

Commit

Permalink
Remove DO termination statement warning from daux1
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Oct 18, 2023
1 parent 8508e65 commit 8229a39
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions svr/daux1.f
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,24 @@ subroutine dewset_u (n, itol, rtol, atol, ycur, ewt)
c
go to (10, 20, 30, 40), itol
10 continue
do 15 i = 1,n
15 ewt(i) = rtol(1)*dabs(ycur(i)) + atol(1)
do i = 1,n
ewt(i) = rtol(1)*dabs(ycur(i)) + atol(1)
end do
return
20 continue
do 25 i = 1,n
25 ewt(i) = rtol(1)*dabs(ycur(i)) + atol(i)
do i = 1,n
ewt(i) = rtol(1)*dabs(ycur(i)) + atol(i)
end do
return
30 continue
do 35 i = 1,n
35 ewt(i) = rtol(i)*dabs(ycur(i)) + atol(1)
do i = 1,n
ewt(i) = rtol(i)*dabs(ycur(i)) + atol(1)
end do
return
40 continue
do 45 i = 1,n
45 ewt(i) = rtol(i)*dabs(ycur(i)) + atol(i)
do i = 1,n
ewt(i) = rtol(i)*dabs(ycur(i)) + atol(i)
end do
return
c----------------------- end of subroutine dewset ----------------------
end
Expand Down

0 comments on commit 8229a39

Please sign in to comment.