# HG changeset patch # User Tuomo Valkonen # Date 1618347088 18000 # Node ID f075aca8485be9056e7142206ecaa947c62783f0 # Parent 90f92ee9cb818213000c55d35fa60bc295f7ca4e Fix Linops to use AbstractMatrix instead of Matrix diff -r 90f92ee9cb81 -r f075aca8485b src/LinOps.jl --- 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