File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1144,7 +1144,7 @@ function issym(A::Sparse)
1144
1144
if s. stype != 0
1145
1145
return isreal (A)
1146
1146
end
1147
- i = symmetry (A, 1 )[1 ] # 0 is faster, but had a bug before 3.0.5
1147
+ i = symmetry (A, 1 )[1 ]
1148
1148
return i == MM_SYMMETRIC || i == MM_SYMMETRIC_POSDIAG
1149
1149
end
1150
1150
@@ -1153,7 +1153,7 @@ function ishermitian(A::Sparse{Float64})
1153
1153
if s. stype != 0
1154
1154
return true
1155
1155
else
1156
- i = symmetry (A, 1 )[1 ] # 0 is faster, but had a bug before 3.0.5
1156
+ i = symmetry (A, 1 )[1 ]
1157
1157
return i == MM_SYMMETRIC || i == MM_SYMMETRIC_POSDIAG
1158
1158
end
1159
1159
end
@@ -1162,7 +1162,7 @@ function ishermitian(A::Sparse{Complex{Float64}})
1162
1162
if s. stype != 0
1163
1163
return true
1164
1164
else
1165
- i = symmetry (A, 1 )[1 ] # 0 is faster, but had a bug before 3.0.5
1165
+ i = symmetry (A, 1 )[1 ]
1166
1166
return i == MM_HERMITIAN || i == MM_HERMITIAN_POSDIAG
1167
1167
end
1168
1168
end
You can’t perform that action at this time.
0 commit comments