1
0
mirror of https://github.com/kalmarek/GroupRings.jl.git synced 2024-09-05 14:46:44 +02:00

GroupRingElem is just a RingElem

This commit is contained in:
kalmar 2017-05-17 14:32:17 +02:00
parent 1393810781
commit 7994c2d308

View File

@ -1,7 +1,7 @@
module GroupRings module GroupRings
using Nemo using Nemo
import Nemo: Group, GroupElem, Ring, parent, elem_type, parent_type import Nemo: Group, GroupElem, Ring, RingElem, parent, elem_type, parent_type
import Base: convert, show, hash, ==, +, -, *, //, /, length, norm, rationalize, deepcopy_internal, getindex, setindex! import Base: convert, show, hash, ==, +, -, *, //, /, length, norm, rationalize, deepcopy_internal, getindex, setindex!
@ -26,9 +26,7 @@ type GroupRing <: Ring
end end
end end
abstract AbstractGroupRingElem type GroupRingElem{T<:Number} <: RingElem
type GroupRingElem{T<:Number} <: AbstractGroupRingElem
coeffs::AbstractVector{T} coeffs::AbstractVector{T}
parent::GroupRing parent::GroupRing
end end