mirror of
https://github.com/kalmarek/Groups.jl.git
synced 2024-12-24 18:05:27 +01:00
AutSymbol carries automorphism type, not expression
This commit is contained in:
parent
271e96b44f
commit
e6a0ffd3d6
@ -4,10 +4,30 @@
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
immutable RTransvect
|
||||
i::Int
|
||||
j::Int
|
||||
end
|
||||
|
||||
immutable LTransvect
|
||||
i::Int
|
||||
j::Int
|
||||
end
|
||||
|
||||
immutable FlipAut
|
||||
i::Int
|
||||
end
|
||||
|
||||
immutable PermAut
|
||||
p::perm
|
||||
end
|
||||
|
||||
immutable Identity end
|
||||
|
||||
immutable AutSymbol <: GSymbol
|
||||
str::String
|
||||
pow::Int
|
||||
ex::Expr
|
||||
typ::Union{RTransvect, LTransvect, FlipAut, PermAut, Identity}
|
||||
end
|
||||
|
||||
typealias AutGroupElem GWord{AutSymbol}
|
||||
|
Loading…
Reference in New Issue
Block a user