No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
173cfa9
... +4 ...
409769d
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
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 |
Learn more Showing 1 files with coverage changes found.
src/operations/random.jl
Files | Coverage |
---|---|
src | +1.86% 89.84% |
Project Totals (11 files) | 89.84% |
409769d
#205
e45c4a1
#205
7d083b7
#205
030a840
#205
e1a0974
173cfa9