1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-12-04 18:11:26 +01:00

fix merging master

This commit is contained in:
kalmarek 2017-11-15 20:43:09 +01:00
parent c18e2156b5
commit 03b7590faa

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 str::String
pow::Int pow::Int
typ::Union{RTransvect, LTransvect, FlipAut, PermAut, Identity} typ::Union{RTransvect, LTransvect, FlipAut, PermAut, Identity}