fix merging master

This commit is contained in:
kalmarek 2017-11-15 20:43:09 +01:00
parent c18e2156b5
commit 03b7590faa
1 changed files with 21 additions and 1 deletions

View File

@ -4,7 +4,27 @@
#
###############################################################################
struct AutSymbol <: GSymbol
immutable RTransvect
i::Int
j::Int
end
immutable LTransvect
i::Int
j::Int
end
immutable FlipAut
i::Int
end
immutable PermAut
p::Nemo.Generic.perm
end
immutable Identity end
immutable AutSymbol <: GSymbol
str::String
pow::Int
typ::Union{RTransvect, LTransvect, FlipAut, PermAut, Identity}