Skip to content

Commit 199b21f

Browse files
committed
Do not print entire matrix in pinv field
1 parent 21e33d2 commit 199b21f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/multilevel.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ struct Pinv{T} <: CoarseSolver
5757
Pinv{T}(A) where T = new{T}(pinv(Matrix(A)))
5858
end
5959
Pinv(A) = Pinv{eltype(A)}(A)
60+
Base.show(io::IO, p::Pinv) = print(io, "Pinv")
6061

6162
(p::Pinv)(x, b) = mul!(x, p.pinvA, b)
6263

0 commit comments

Comments
 (0)