Skip to content

Commit 8e9aeae

Browse files
committed
remove unbound type param
1 parent 1d560bf commit 8e9aeae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ControlSystemsBase/src/types/StateSpace.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ function Base.Broadcast.broadcasted(::typeof(*), M::AbstractArray{<:Number}, sys
365365
sminreal(basetype(ST)(Ae, Be, Ce, De, sys1.timeevol))
366366
end
367367

368-
function *(sys1::AbstractStateSpace, D::AbstractMatrix) where {ST <: AbstractStateSpace}
368+
function *(sys1::AbstractStateSpace, D::AbstractMatrix)
369369
if issiso(sys1) && isdiag(D) # This is a special case that falls back on broadcasting
370370
return sys1 .* D
371371
else # This is the standard implementation but must be handled here since we special case diagonal matrices for the case above

0 commit comments

Comments
 (0)