Skip to content

Commit

Permalink
Declare hermitian/hermitian_type to be public (JuliaLang#52388)
Browse files Browse the repository at this point in the history
Similarly, for `symmetric/symmetric_type`. These are meant to be
specialized by custom types, so these should not be marked internal to
`LinearAlgebra`.
  • Loading branch information
jishnub committed Dec 5, 2023
1 parent e0d9cb2 commit dcf08be
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion stdlib/LinearAlgebra/src/LinearAlgebra.jl
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,11 @@ export
I

# not exported, but public names
public AbstractTriangular
public AbstractTriangular,
hermitian,
hermitian_type,
symmetric,
symmetric_type

const BlasFloat = Union{Float64,Float32,ComplexF64,ComplexF32}
const BlasReal = Union{Float64,Float32}
Expand Down

0 comments on commit dcf08be

Please sign in to comment.