Skip to content

Commit

Permalink
fix type compatibility when compiling with Intel Fortran (ifort)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarnier authored and WhoBrokeTheBuild committed Apr 6, 2023
1 parent 84d8084 commit 6899a74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion math/csint.f
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Subroutine C9INI(ndata,xdata,fdata,dfdata,break,c)
Do j = 1,ndata
idx(j) = j
Enddo
Call SVRGP(ndata,xdata,break,1,idx)
Call SVRGP(ndata,xdata,break,.true.,idx)
Do j = 1,ndata
c(1,idx(j)) = fdata(j)
c(2,idx(j)) = dfdata(j)
Expand Down
2 changes: 1 addition & 1 deletion math/dcsint.f
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ Subroutine DC9INI(ndata,xdata,fdata,dfdata,break,c)
Do j = 1,ndata
idx(j) = j
Enddo
Call DSVRGP(ndata,xdata,break,1,idx)
Call DSVRGP(ndata,xdata,break,.true.,idx)
Do j = 1,ndata
c(1,idx(j)) = fdata(j)
c(2,idx(j)) = dfdata(j)
Expand Down

0 comments on commit 6899a74

Please sign in to comment.