1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-07-17 19:00:33 +02:00

operations field is no more

This commit is contained in:
kalmar 2017-07-12 21:11:12 +02:00
parent 674fa9f9d3
commit a5a67bd7d3

View File

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