mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-12-24 18:10:29 +01:00
define group_algebra
This commit is contained in:
parent
633f065488
commit
7907137fb5
@ -25,7 +25,19 @@ include("gradings.jl")
|
|||||||
|
|
||||||
include("actions/actions.jl")
|
include("actions/actions.jl")
|
||||||
|
|
||||||
include("1712.07167.jl")
|
function group_algebra(G::Groups.Group, S=gens(G); halfradius::Integer, twisted::Bool)
|
||||||
include("1812.03456.jl")
|
S = union!(S, inv.(S))
|
||||||
|
@info "generating wl-metric ball of radius $(2halfradius)"
|
||||||
|
@time E, sizes = Groups.wlmetric_ball_serial(S, radius=2halfradius)
|
||||||
|
@info "sizes = $(sizes)"
|
||||||
|
@info "computing the *-algebra structure for G"
|
||||||
|
@time RG = StarAlgebras.StarAlgebra{twisted}(
|
||||||
|
G,
|
||||||
|
StarAlgebras.Basis{UInt32}(E),
|
||||||
|
(sizes[halfradius], sizes[halfradius]),
|
||||||
|
precompute=false,
|
||||||
|
)
|
||||||
|
return RG, S, sizes
|
||||||
|
end
|
||||||
|
|
||||||
end # module Property(T)
|
end # module Property(T)
|
||||||
|
Loading…
Reference in New Issue
Block a user