Skip to content

Commit 51d3b14

Browse files
authored
Do not pirate show for sparse matrices (#129)
* Do not pirate `show` for sparse matrices 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`. * update Project.toml
1 parent f7819df commit 51d3b14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "RecurrenceAnalysis"
22
uuid = "639c3291-70d9-5ea2-8c5b-839eba1ee399"
33
repo = "https://github.com/JuliaDynamics/RecurrenceAnalysis.jl.git"
4-
version = "1.6.3"
4+
version = "1.6.4"
55

66
[deps]
77
DelayEmbeddings = "5732040d-69e3-5649-938a-b6b4f237613f"

src/matrices/plot.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function recurrenceplot(io::IO, R::Union{ARM,SparseMatrixCSC}; minh = 25, maxh =
8585
)
8686
end
8787

88-
function Base.show(io::IO, ::MIME"text/plain", R::Union{ARM,SparseMatrixCSC})
88+
function Base.show(io::IO, ::MIME"text/plain", R::ARM)
8989
a = recurrenceplot(io, R)
9090
show(io, a)
9191
end

0 commit comments

Comments
 (0)