You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using LinearAlgebra
a =Matrix{BigFloat}(undef, 2,2)
a[1] =1; a[3] =1; a[4] =1
a =Hermitian(a)
b =Symmetric(a)
c =Diagonal([1,1])
d =SymTridiagonal([11;11])
a+c
a+d
b+c
b+d
I've also tested with UpperTriangular, LowerTriangular, UnitUpperTriangular, UnitLowerTriangular, they work fine.
I've noticed this issue when testing my package with Julia 1.11. It showed up because when I do
using LinearAlgebra
a =Hermitian(BigFloat.([11;11]))
b = a + a
I get a partially initialized b, unlike in previous versions.