mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2025-01-01 03:40:29 +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)
|
return RG(X.coeffs)
|
||||||
end
|
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
|
# Basic manipulation
|
||||||
|
Loading…
Reference in New Issue
Block a user