Skip to content

Commit

Permalink
remove checks in signature
Browse files Browse the repository at this point in the history
  • Loading branch information
saasaa committed Sep 23, 2023
1 parent 56609fc commit bf0d133
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions slycot/src/math.pyf
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ end subroutine mc01td

subroutine mb02ed(typet,k,n,nrhs,t,ldt,b,ldb,dwork,ldwork,info) ! in MB02ED.f
character :: typet
integer intent(in),required,check(k>=0) :: k
integer intent(in),required,check(n>=0) :: n
integer intent(in),required,check(nrhs>=0) :: nrhs
integer intent(in),required :: k
integer intent(in),required :: n
integer intent(in),required :: nrhs
double precision intent(in,out,copy),dimension(ldt,*) :: t
integer, intent(hide),optional,check(shape(t, 0) == ldt),depend(t) :: ldt=shape(t, 0)
double precision intent(in,out,copy),dimension(ldb,*) :: b
Expand Down

0 comments on commit bf0d133

Please sign in to comment.