mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2024-12-29 11:00:28 +01:00
better text of throws
This commit is contained in:
parent
bd300d83a5
commit
acb05e7a85
@ -107,9 +107,8 @@ function GroupRing(G::Group; init::Bool=false)
|
||||
end
|
||||
|
||||
function GroupRing(G::Group, basis::Vector, pm::Array{Int,2})
|
||||
size(pm,1) == size(pm,2) || throw("pm must be of size (n,n), got
|
||||
$(size(pm))")
|
||||
eltype(basis) == elem_type(G) || throw("basis must consist of elements of $G")
|
||||
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)
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user