Skip to content
Snippets Groups Projects
Commit 0e546af4 authored by kamischi's avatar kamischi
Browse files

Update sicot.f90

tested and works.
parent a0205a12
Branches sicotMod
No related tags found
No related merge requests found
......@@ -86,14 +86,9 @@ subroutine sicot(f, m, h, x0)
enddo
j = n
do i = 2, n
j = j - 1
do j = n - 1, 1, -1
f(j) = f(j) + f(j + 1)
enddo
! alternative, but not yet tested:
! do j = n - 1, 1, -1
! f(j) = f(j) + f(j + 1)
! enddo
msign = -iabs(m)
call sintr(f, msign, h)
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment