1
0
mirror of https://github.com/kalmarek/GroupRings.jl.git synced 2024-08-02 06:43:27 +02:00
This commit is contained in:
kalmar 2017-07-25 14:48:48 +02:00
parent 39039f9ec1
commit 66711a3181

View File

@ -99,8 +99,7 @@ end
function GroupRing(G::Group, basis::Vector, pm::Array{Int,2})
size(pm,1) == size(pm,2) || throw("pm must be square, got $(size(pm))")
eltype(basis) == elem_type(G) || throw("Basis must consist of elements of $G")
basis_dict = reverse_dict(basis)
return GroupRing(G, basis, basis_dict, pm)
return GroupRing(G, basis, reverse_dict(basis), pm)
end
###############################################################################