Skip to content

Commit

Permalink
Merge c6aa8d2 into bbbe8c3
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarrasch authored Jun 6, 2023
2 parents bbbe8c3 + c6aa8d2 commit 8612626
Show file tree
Hide file tree
Showing 2 changed files with 328 additions and 192 deletions.
4 changes: 2 additions & 2 deletions stdlib/LinearAlgebra/src/hessenberg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ for T = (:Number, :UniformScaling, :Diagonal)
end

function *(H::UpperHessenberg, U::UpperOrUnitUpperTriangular)
HH = _mulmattri!(_initarray(*, eltype(H), eltype(U), H), H, U)
HH = mul!(_initarray(*, eltype(H), eltype(U), H), H, U)
UpperHessenberg(HH)
end
function *(U::UpperOrUnitUpperTriangular, H::UpperHessenberg)
HH = _multrimat!(_initarray(*, eltype(U), eltype(H), H), U, H)
HH = mul!(_initarray(*, eltype(U), eltype(H), H), U, H)
UpperHessenberg(HH)
end

Expand Down
Loading

0 comments on commit 8612626

Please sign in to comment.