if no "nosymmetry" in args, assume symmetrization
This commit is contained in:
parent
aaa36b2d5c
commit
8a2aa6542e
@ -10,7 +10,7 @@ struct SpecialAutomorphismGroup <: SymmetrizedGroup
|
|||||||
end
|
end
|
||||||
|
|
||||||
function name(G::SpecialAutomorphismGroup)
|
function name(G::SpecialAutomorphismGroup)
|
||||||
if G.args["nosymmetry"]
|
if haskey(G.args, "nosymmetry") && G.args["nosymmetry"]
|
||||||
return "SAutF$(G.N)"
|
return "SAutF$(G.N)"
|
||||||
else
|
else
|
||||||
return "oSAutF$(G.N)"
|
return "oSAutF$(G.N)"
|
||||||
|
@ -27,7 +27,7 @@ function name(G::SpecialLinearGroup)
|
|||||||
else
|
else
|
||||||
R = "F$p"
|
R = "F$p"
|
||||||
end
|
end
|
||||||
if G.args["nosymmetry"]
|
if haskey(G.args, "nosymmetry") && G.args["nosymmetry"]
|
||||||
return "SL($(G.N),$R)"
|
return "SL($(G.N),$R)"
|
||||||
else
|
else
|
||||||
return "oSL($(G.N),$R)"
|
return "oSL($(G.N),$R)"
|
||||||
|
Loading…
Reference in New Issue
Block a user