if no "nosymmetry" in args, assume symmetrization

This commit is contained in:
kalmarek 2018-09-06 22:45:16 +02:00
parent aaa36b2d5c
commit 8a2aa6542e
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ struct SpecialAutomorphismGroup <: SymmetrizedGroup
end
function name(G::SpecialAutomorphismGroup)
if G.args["nosymmetry"]
if haskey(G.args, "nosymmetry") && G.args["nosymmetry"]
return "SAutF$(G.N)"
else
return "oSAutF$(G.N)"

View File

@ -27,7 +27,7 @@ function name(G::SpecialLinearGroup)
else
R = "F$p"
end
if G.args["nosymmetry"]
if haskey(G.args, "nosymmetry") && G.args["nosymmetry"]
return "SL($(G.N),$R)"
else
return "oSL($(G.N),$R)"