File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -336,15 +336,15 @@ function _diag_adj_mul(A::AdjOrTransAbsMat, D::Diagonal)
336336 adj = wrapperop (A)
337337 copy (adj (adj (D) * adj (A)))
338338end
339- function _diag_adj_mul (A:: AdjOrTransAbsMat{<:Any , <:StridedMatrix} , D:: Diagonal )
339+ function _diag_adj_mul (A:: AdjOrTransAbsMat{<:Number , <:StridedMatrix} , D:: Diagonal )
340340 Ac = copy_similar (A, promote_op (* , eltype (A), eltype (D)))
341341 rmul! (Ac, D)
342342end
343343function _diag_adj_mul (D:: Diagonal , A:: AdjOrTransAbsMat )
344344 adj = wrapperop (A)
345345 copy (adj (adj (A) * adj (D)))
346346end
347- function _diag_adj_mul (D:: Diagonal , A:: AdjOrTransAbsMat{<:Any , <:StridedMatrix} )
347+ function _diag_adj_mul (D:: Diagonal , A:: AdjOrTransAbsMat{<:Number , <:StridedMatrix} )
348348 Ac = copy_similar (A, promote_op (* , eltype (A), eltype (D)))
349349 lmul! (D, Ac)
350350end
You can’t perform that action at this time.
0 commit comments