We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78ed034 commit a10de49Copy full SHA for a10de49
src/spaces/gradedspace.jl
@@ -250,25 +250,6 @@ function Base.show(io::IO, V::GradedSpace)
250
return nothing
251
end
252
253
-function Base.show(io::IO, ::MIME"text/plain", V::GradedSpace)
254
- summary(io, V)
255
- iszero(dim(V)) && return nothing
256
- print(io, ":")
257
-
258
- # early bail if not enough space
259
- if get(io, :limit, false)::Bool && displaysize(io)[1] - 4 <= 0
260
- return print(io, " …")
261
- else
262
- println(io)
263
- end
264
265
- io2 = IOContext(io, :typeinfo => Pair{sectortype(V), Int})
266
- data = [(isdual(V) ? dual(c) : c) => dim(V, c) for c in sectors(V)]
267
- Base.print_matrix(io2, data)
268
- return nothing
269
-end
270
271
272
struct SpaceTable end
273
"""
274
const Vect
0 commit comments