From 354da7876988c99926be086e3597301e769e8fa7 Mon Sep 17 00:00:00 2001 From: kalmar Date: Fri, 21 Jul 2017 14:31:05 +0200 Subject: [PATCH] clean-up show --- src/WreathProducts.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/WreathProducts.jl b/src/WreathProducts.jl index fecbeba..7dc6893 100644 --- a/src/WreathProducts.jl +++ b/src/WreathProducts.jl @@ -140,12 +140,10 @@ end ############################################################################### function show(io::IO, G::WreathProduct) - print(io, "Wreath Product of $(G.N.factors[1]) and $(G.P)") + print(io, "Wreath Product of $(G.N.group) by $(G.P)") end function show(io::IO, g::WreathProductElem) - # println(io, "Element of WreathProduct over $T of size $(size(X)):") - # show(io, "text/plain", matrix_repr(X)) print(io, "($(g.n)≀$(g.p))") end