Tue, 13 Apr 2021 15:51:28 -0500
Fix Linops to use AbstractMatrix instead of Matrix
--- a/src/LinOps.jl Mon Mar 22 22:26:08 2021 -0500 +++ b/src/LinOps.jl Tue Apr 13 15:51:28 2021 -0500 @@ -76,7 +76,7 @@ # Matrix operator struct MatrixOp{T<:Real} <: LinOp{Vector{T}, Vector{T}} - m :: Matrix{T} + m :: AbstractMatrix{T} end function (op::MatrixOp{T})(v::Vector{T}) where T