finally straighten printing of GroupAlgebraElements

This commit is contained in:
kalmar 2017-01-09 00:54:31 +01:00
parent 723957f415
commit ce2ebc7284
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ convert{T<:Number}(::Type{T}, X::GroupAlgebraElement) =
GroupAlgebraElement(convert(Vector{T}, X.coefficients), X.product_matrix)
show{T}(io::IO, X::GroupAlgebraElement{T}) = print(io,
"Element of Group Algebra over ", T, "of length $(length(X)):\n", X.coefficients)
"Element of Group Algebra over $T of length $(length(X)):\n $(X.coefficients)")
function isequal{T, S}(X::GroupAlgebraElement{T}, Y::GroupAlgebraElement{S})