remove isequal

This commit is contained in:
kalmar 2017-05-16 18:30:43 +02:00
parent 89c5971cdd
commit 02eff23d17
1 changed files with 0 additions and 7 deletions

View File

@ -37,13 +37,6 @@ show{T}(io::IO, X::GroupAlgebraElement{T}) = print(io,
"Element of Group Algebra over $T of length $(length(X)):\n $(X.coefficients)")
function isequal{T, S}(X::GroupAlgebraElement{T}, Y::GroupAlgebraElement{S})
if T != S
warn("Comparing elements with different coefficients Rings!")
end
X.product_matrix == Y.product_matrix || return false
X.coefficients == Y.coefficients || return false
return true
end
(==)(X::GroupAlgebraElement, Y::GroupAlgebraElement) = isequal(X,Y)