Skip to content

Commit

Permalink
explicitly import Base.show
Browse files Browse the repository at this point in the history
  • Loading branch information
stecrotti committed Apr 15, 2024
1 parent c3e9a6a commit 0f8c218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/svd_trunc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function _debug_svd(M, U, λ, V, mprime)
end

summary(::SVDTrunc) = error("Not implemented")
show(io::IO, svd_trunc::SVDTrunc) = println(io, summary(svd_trunc))
Base.show(io::IO, svd_trunc::SVDTrunc) = println(io, summary(svd_trunc))

"""
TruncThresh{T} <: SVDTrunc
Expand Down

0 comments on commit 0f8c218

Please sign in to comment.