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
I found a likely bug in issymmetric(A::AbstractSparseMatrixCSC), which considers symmetric a matrix which is clearly non-symmetric. Here is an example.
using LinearAlgebra, SparseArrays
S =sparse([2, 3, 1], [1, 1, 3], [1, 1, 1], 3, 3)
I found a likely bug in
issymmetric(A::AbstractSparseMatrixCSC)
, which considers symmetric a matrix which is clearly non-symmetric. Here is an example.S
looks like this:And this is what
issymmetric
does:The bug most likely applies also to
ishermitian
.Version info
Pkg status
The text was updated successfully, but these errors were encountered: