Skip to content

Commit

Permalink
add intermediate legacy code
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarrasch committed Jul 15, 2023
1 parent bc374ac commit dd845ee
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions stdlib/LinearAlgebra/src/adjtrans.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ adj_or_trans(::T) where {T<:AbstractArray} = adj_or_trans(T)
adj_or_trans(::Type{<:AbstractArray}) = identity
adj_or_trans(::Type{<:Adjoint}) = adjoint
adj_or_trans(::Type{<:Transpose}) = transpose
# more legacy stuff to be removed
_multrimat!(C, A, B) = _trimul!(C, A, B)
_mulmattri!(C, A, B) = _trimul!(C, A, B)

"""
inplace_adj_or_trans(::AbstractArray) -> adjoint!|transpose!|copyto!
Expand Down

0 comments on commit dd845ee

Please sign in to comment.