Groups.jl/src/groups/transvections.jl

85 lines
2.3 KiB
Julia
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

struct Transvection <: GSymbol
id::Symbol
ij::UInt8
inv::Bool
function Transvection(id::Symbol, i::Integer, j::Integer, inv = false)
@assert id in (:ϱ, )
return new(id, _indices(UInt8(i), UInt8(j)), inv)
end
end
ϱ(i, j) = Transvection(:ϱ, i, j)
λ(i, j) = Transvection(, i, j)
_indices(ij::UInt8) = (ij & 0xf0) >> 4, (ij & 0x0f)
function _indices(i::UInt8, j::UInt8)
@boundscheck @assert i < typemax(i) ÷ 2
@boundscheck @assert j < typemax(j) ÷ 2
sizeof
return (i << 4) + j
end
indices(t::Transvection) = Int.(_indices(t.ij))
function Base.getproperty(t::Transvection, s::Symbol)
s === :i && return first(indices(t))
s === :j && return last(indices(t))
return Core.getfield(t, s)
end
function Base.show(io::IO, t::Transvection)
id = if t.id === :ϱ
"ϱ"
else # if t.id === :λ
"λ"
end
# print(io, id, Groups.subscriptify(t.i), ".", Groups.subscriptify(t.j))
print(io, id, "_", t.i, ",", t.j)
t.inv && print(io, "^-1")
end
Base.inv(t::Transvection) = Transvection(t.id, _indices(t.ij)..., !t.inv)
Base.:(==)(t::Transvection, s::Transvection) =
t.id === s.id && t.ij == s.ij && t.inv == s.inv
Base.hash(t::Transvection, h::UInt) = hash(t.id, hash(t.ij, hash(t.inv, h)))
Base.@propagate_inbounds function evaluate!(v::Tuple, t::Transvection, A::Alphabet, tmp=one(first(v)))
i, j = indices(t)
@assert i length(v) && j length(v)
@inbounds begin
if t.id === :ϱ
if !t.inv
append!(word(v[i]), word(v[j]))
else
# append!(word(v[i]), inv(A, word(v[j])))
for l in Iterators.reverse(word(v[j]))
push!(word(v[i]), inv(A, l))
end
end
else # if t.id === :λ
if !t.inv
# prepend!(word(v[i]), word(v[j]))
for l in Iterators.reverse(word(v[j]))
pushfirst!(word(v[i]), l)
end
else
# prepend!(word(v[i]), inv(A, word(v[j])))
for l in word(v[j])
pushfirst!(word(v[i]), inv(A, l))
end
end
end
_setnormalform!(v[i], false)
_setvalidhash!(v[i], false)
end
normalform!(tmp, v[i])
copyto!(v[i], tmp)
return v
end