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

No GroupRingElem without parent is allowed

This commit is contained in:
kalmar 2017-05-17 11:30:05 +02:00
parent 1d5bf641ff
commit d53051a349

View File

@ -31,10 +31,6 @@ abstract AbstractGroupRingElem
type GroupRingElem{T<:Number} <: AbstractGroupRingElem type GroupRingElem{T<:Number} <: AbstractGroupRingElem
coeffs::AbstractVector{T} coeffs::AbstractVector{T}
parent::GroupRing parent::GroupRing
function GroupRingElem(coeffs::AbstractVector)
return new(coeffs)
end
end end
export GroupRing, GroupRingElem export GroupRing, GroupRingElem