mirror of
https://github.com/kalmarek/Groups.jl.git
synced 2024-12-04 18:11:26 +01:00
evaluate AutSymbol
This commit is contained in:
parent
54e8eb0b43
commit
23d3787e34
@ -157,7 +157,21 @@ function (f::AutSymbol){T}(v::Vector{GWord{T}})
|
|||||||
if f.pow == 0
|
if f.pow == 0
|
||||||
return v
|
return v
|
||||||
end
|
end
|
||||||
return f.func(v)
|
if f.ex == :(id())
|
||||||
|
func = identity(v)
|
||||||
|
elseif f.ex.args[1] == :ϱ
|
||||||
|
func = ϱ(f.ex.args[2], f.ex.args[3], f.pow)
|
||||||
|
elseif f.ex.args[1] == :λ
|
||||||
|
func = λ(f.ex.args[2], f.ex.args[3], f.pow)
|
||||||
|
elseif f.ex.args[1] == :ɛ
|
||||||
|
func = ɛ(f.ex.args[2], f.pow)
|
||||||
|
elseif f.ex.args[1] == :σ
|
||||||
|
g = PermutationGroup(length(f.ex.args[2]))(f.ex.args[2])
|
||||||
|
func = σ(g, f.ex.args[3])
|
||||||
|
else
|
||||||
|
throw("Unknown AutSymbol!")
|
||||||
|
end
|
||||||
|
return func(v)
|
||||||
end
|
end
|
||||||
|
|
||||||
function (F::AutGroupElem)(v::Vector)
|
function (F::AutGroupElem)(v::Vector)
|
||||||
|
Loading…
Reference in New Issue
Block a user