remove checks from addeq!

This commit is contained in:
kalmar 2017-07-19 22:17:06 +02:00
parent 7390f4699e
commit 3166c588b1
1 changed files with 0 additions and 2 deletions

View File

@ -294,8 +294,6 @@ end
###############################################################################
function addeq!{T}(X::GroupRingElem{T}, Y::GroupRingElem{T})
parent(X) == parent(Y) || throw(ArgumentError(
"Elements don't seem to belong to the same Group Ring!"))
X.coeffs .+= Y.coeffs
return X
end