fix #204
Showing 1 of 3 files from the diff.
src/matrix.jl
changed.
Other files ignored by Codecov
test/constructors.jl
has changed.
Project.toml
has changed.
@@ -184,3 +184,12 @@
Loading
184 | 184 | ||
185 | 185 | return IntervalMatrix(map((x, y) -> x ± y, C, S)) |
|
186 | 186 | end |
|
187 | + | ||
188 | + | for op in (:Adjoint, :Bidiagonal, :Diagonal, :Hermitian, |
|
189 | + | :SymTridiagonal, :Symmetric, :Transpose, :Tridiagonal) |
|
190 | + | @eval LinearAlgebra.$op(A::IntervalMatrix) = IntervalMatrix($op(A.mat)) |
|
191 | + | end |
|
192 | + | ||
193 | + | if VERSION >= v"1.3" |
|
194 | + | LinearAlgebra.UpperHessenberg(A::IntervalMatrix) = IntervalMatrix(UpperHessenberg(A.mat)) |
|
195 | + | end |
Files | Coverage |
---|---|
src | 89.84% |
Project Totals (11 files) | 89.84% |
1894827040
1894827040
1894827040
1 |
comment: false |
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.