1
0
mirror of https://github.com/kalmarek/GroupRings.jl.git synced 2024-10-09 06:25:37 +02:00

GroupAlgebraElement -> GroupRingElem

This commit is contained in:
kalmar 2017-05-16 18:29:14 +02:00
parent 7a23fdb759
commit 89c5971cdd

View File

@ -17,17 +17,13 @@ type GroupRing <: Ring
GroupRing(G::Group) = new(G) GroupRing(G::Group) = new(G)
end end
immutable GroupAlgebraElement{T<:Number}
coefficients::AbstractVector{T}
product_matrix::Array{Int,2}
# basis::Array{Any,1}
function GroupAlgebraElement(coefficients::AbstractVector, type GroupRingElem{T<:Number}
product_matrix::Array{Int,2}) coeffs::AbstractVector{T}
parent::GroupRing
size(product_matrix, 1) == size(product_matrix, 2) || function GroupRingElem(coeffs::AbstractVector)
throw(ArgumentError("Product matrix has to be square")) return new(coeffs)
new(coefficients, product_matrix)
end end
end end