mirror of
https://github.com/kalmarek/Groups.jl.git
synced 2024-12-12 15:16:27 +01:00
immutable -> struct
This commit is contained in:
parent
c89ffbb4b4
commit
02d947899f
@ -4,30 +4,30 @@
|
|||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
immutable RTransvect
|
struct RTransvect
|
||||||
i::Int
|
i::Int
|
||||||
j::Int
|
j::Int
|
||||||
end
|
end
|
||||||
|
|
||||||
immutable LTransvect
|
struct LTransvect
|
||||||
i::Int
|
i::Int
|
||||||
j::Int
|
j::Int
|
||||||
end
|
end
|
||||||
|
|
||||||
immutable FlipAut
|
struct FlipAut
|
||||||
i::Int
|
i::Int
|
||||||
end
|
end
|
||||||
|
|
||||||
immutable PermAut
|
struct PermAut
|
||||||
p::Nemo.Generic.perm{Int8}
|
p::Nemo.Generic.perm{Int8}
|
||||||
end
|
end
|
||||||
|
|
||||||
immutable Identity end
|
struct Identity end
|
||||||
|
|
||||||
immutable AutSymbol <: GSymbol
|
struct AutSymbol <: GSymbol
|
||||||
str::String
|
str::String
|
||||||
pow::Int
|
pow::Int
|
||||||
typ::Union{RTransvect, LTransvect, FlipAut, PermAut, Identity}
|
typ::Union{LTransvect, RTransvect, PermAut, FlipAut, Identity}
|
||||||
end
|
end
|
||||||
|
|
||||||
AutGroupElem = GWord{AutSymbol}
|
AutGroupElem = GWord{AutSymbol}
|
||||||
|
Loading…
Reference in New Issue
Block a user