1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-09-13 08:25:39 +02:00

remove specialized deepcopy

This commit is contained in:
kalmarek 2018-07-30 14:53:20 +02:00
parent 78abdc3181
commit d78f1ec38a
2 changed files with 0 additions and 9 deletions

View File

@ -177,11 +177,6 @@ end
#
###############################################################################
function deepcopy_internal(g::DirectProductGroupElem, dict::ObjectIdDict)
G = parent(g)
return G(deepcopy(g.elts))
end
function hash(G::DirectProductGroup, h::UInt)
return hash(G.group, hash(G.n, hash(DirectProductGroup,h)))
end

View File

@ -118,10 +118,6 @@ doc"""
#
###############################################################################
function deepcopy_internal(g::WreathProductElem, dict::ObjectIdDict)
return WreathProductElem(deepcopy(g.n), deepcopy(g.p), false)
end
function hash(G::WreathProduct, h::UInt)
return hash(G.N, hash(G.P, hash(WreathProduct, h)))
end