Skip to content

Commit

Permalink
Make ab13bd array arguments intent(in,out,copy)
Browse files Browse the repository at this point in the history
  • Loading branch information
roryyorke committed Jul 22, 2023
1 parent 4699356 commit c426935
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions slycot/src/analysis.pyf
Original file line number Diff line number Diff line change
Expand Up @@ -307,13 +307,13 @@ function ab13bd(dico,jobn,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nq,tol,dwork,ldwork,iwar
integer check(n>=0) :: n
integer check(n>=0) :: m
integer check(n>=0) :: p
double precision dimension(n,n),depend(n) :: a
double precision intent(in,out,copy),dimension(n,n),depend(n) :: a
integer intent(hide),depend(a) :: lda = shape(a,0)
double precision dimension(n,m),depend(n,m) :: b
double precision intent(in,out,copy),dimension(n,m),depend(n,m) :: b
integer intent(hide),depend(b) :: ldb = shape(b,0)
double precision dimension(p,n),depend(n,p) :: c
double precision intent(in,out,copy),dimension(p,n),depend(n,p) :: c
integer intent(hide),depend(c) :: ldc = shape(c,0)
double precision dimension(p,m),depend(m,p) :: d
double precision intent(in,out,copy),dimension(p,m),depend(m,p) :: d
integer intent(hide),depend(d) :: ldd = shape(d,0)
integer intent(out) :: nq
double precision :: tol
Expand Down

0 comments on commit c426935

Please sign in to comment.