Skip to content

Commit

Permalink
fix extra parameter in gop
Browse files Browse the repository at this point in the history
  • Loading branch information
kent0 committed Mar 24, 2024
1 parent 564e81a commit 3af2e2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/batch.f
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ subroutine breduce(a,n,m)
i=1

do while (i.le.n)
call gop(a(i),w,'+ ',1,min(m,n-i+1))
call gop(a(i),w,'+ ',min(m,n-i+1))
i=i+m
enddo

Expand Down

0 comments on commit 3af2e2b

Please sign in to comment.