1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-07-17 10:55:33 +02:00

update getperm

This commit is contained in:
kalmar 2017-05-12 20:08:27 +02:00
parent f6f2258629
commit 39d64b7e69

View File

@ -75,7 +75,8 @@ end
function getperm(s::AutSymbol) function getperm(s::AutSymbol)
if s.ex.args[1] == :σ if s.ex.args[1] == :σ
return s.ex.args[2] p = s.ex.args[2]
return PermutationGroup(length(p))(p)
else else
throw(ArgumentError("$s is not a permutation automorphism!")) throw(ArgumentError("$s is not a permutation automorphism!"))
end end