mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2024-12-29 11:00:28 +01:00
add RG(i::Int) = i*(id) function
This commit is contained in:
parent
3b9e405565
commit
8463b928cb
@ -113,6 +113,11 @@ end
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
zero(RG::GroupRing, T::Type=Int) = RG(T)
|
||||
one(RG::GroupRing, T::Type=Int) = RG(RG.group(), T)
|
||||
|
||||
(RG::GroupRing)(i::Int, T::Type=Int) = i*one(RG, T)
|
||||
|
||||
function (RG::GroupRing)(T::Type=Int)
|
||||
isdefined(RG, :basis) || throw("Complete the definition of GroupRing first")
|
||||
return GroupRingElem(spzeros(T,length(RG.basis)), RG)
|
||||
@ -187,9 +192,6 @@ end
|
||||
|
||||
eltype(X::GroupRingElem) = eltype(X.coeffs)
|
||||
|
||||
one(RG::GroupRing) = RG(RG.group())
|
||||
zero(RG::GroupRing) = RG()
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
# String I/O
|
||||
|
Loading…
Reference in New Issue
Block a user