Skip to content

Commit

Permalink
Do not pirate show for sparse matrices
Browse files Browse the repository at this point in the history
This is not convenient anymore, as Julia represents big sparse matrices with Braille patterns since v1.6 (JuliaLang/julia#33821). Actually, perhaps we could even use that representation for `AbstractRecurrenceMatrix`.
  • Loading branch information
heliosdrm authored Dec 29, 2021
1 parent f7819df commit 54bfc79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/matrices/plot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function recurrenceplot(io::IO, R::Union{ARM,SparseMatrixCSC}; minh = 25, maxh =
)
end

function Base.show(io::IO, ::MIME"text/plain", R::Union{ARM,SparseMatrixCSC})
function Base.show(io::IO, ::MIME"text/plain", R::ARM)
a = recurrenceplot(io, R)
show(io, a)
end
Expand Down

0 comments on commit 54bfc79

Please sign in to comment.