mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2024-12-29 11:00:28 +01:00
coercion to GroupRing via specified function on underlying groups
This commit is contained in:
parent
7ba59d6508
commit
b2231c44e6
@ -136,6 +136,14 @@ function (RG::GroupRing)(X::GroupRingElem)
|
||||
return RG(X.coeffs)
|
||||
end
|
||||
|
||||
function (RG::GroupRing)(X::GroupRingElem, emb::Function)
|
||||
result = RG(eltype(X.coeffs))
|
||||
for g in parent(X).basis
|
||||
result[emb(g)] = X[g]
|
||||
end
|
||||
return result
|
||||
end
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
# Basic manipulation
|
||||
|
Loading…
Reference in New Issue
Block a user