operations field is no more

This commit is contained in:
kalmar 2017-07-12 21:11:12 +02:00
parent 674fa9f9d3
commit a5a67bd7d3
1 changed files with 1 additions and 2 deletions

View File

@ -94,7 +94,7 @@ function deepcopy_internal(g::DirectProductGroupElem, dict::ObjectIdDict)
end
function hash(G::DirectProductGroup, h::UInt)
return hash(G.factors, hash(G.operations, hash(DirectProductGroup,h)))
return hash(G.factors, hash(DirectProductGroup,h))
end
function hash(g::DirectProductGroupElem, h::UInt)
@ -131,7 +131,6 @@ end
function (==)(G::DirectProductGroup, H::DirectProductGroup)
G.factors == H.factors || return false
G.operations == H.operations || return false
return true
end