Skip to content

Commit

Permalink
Fix datatype and value check of parameter (m,p)
Browse files Browse the repository at this point in the history
  • Loading branch information
KybernetikJo committed Jul 19, 2023
1 parent 294eae0 commit d4ab543
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slycot/src/analysis.pyf
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,8 @@ function ab13bd(dico,jobn,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nq,tol,dwork,ldwork,iwar
character intent(in) :: dico
character intent(in) :: jobn
integer check(n>=0) :: n
integer check(n>=0) :: m
integer check(n>=0) :: p
integer check(m>=0) :: m
integer check(p>=0) :: p
double precision dimension(n,n),depend(n) :: a
integer intent(hide),depend(a) :: lda = shape(a,0)
double precision dimension(n,m),depend(n,m) :: b
Expand Down

0 comments on commit d4ab543

Please sign in to comment.