2018-09-21 18:08:44 +02:00
|
|
|
using Test
|
2018-07-30 08:30:27 +02:00
|
|
|
using Groups
|
2022-04-02 15:50:03 +02:00
|
|
|
using PermutationGroups
|
2017-01-23 16:45:24 +01:00
|
|
|
|
2022-04-02 15:51:29 +02:00
|
|
|
import Logging
|
|
|
|
|
2021-06-21 19:14:42 +02:00
|
|
|
import KnuthBendix: Word
|
2018-09-21 18:08:44 +02:00
|
|
|
|
2021-06-21 18:16:04 +02:00
|
|
|
using GroupsCore
|
|
|
|
include(joinpath(pathof(GroupsCore), "..", "..", "test", "conformance_test.jl"))
|
2019-06-30 19:55:56 +02:00
|
|
|
|
2021-06-21 18:16:04 +02:00
|
|
|
@testset "Groups" begin
|
2021-05-24 14:46:54 +02:00
|
|
|
|
2022-04-02 15:53:55 +02:00
|
|
|
_, t = @timed include("free_groups.jl")
|
|
|
|
@info "free_groups.jl took $(round(t, digits=2))s"
|
|
|
|
_, t = @timed include("fp_groups.jl")
|
|
|
|
@info "fp_groups.jl took $(round(t, digits=2))s"
|
|
|
|
|
|
|
|
_, t = @timed include("matrix_groups.jl")
|
|
|
|
@info "matrix_groups.jl took $(round(t, digits=2))s"
|
|
|
|
_, t = @timed include("AutFn.jl")
|
|
|
|
@info "AutFn.jl took $(round(t, digits=2))s"
|
|
|
|
|
|
|
|
_, t = @timed include("homomorphisms.jl")
|
|
|
|
@info "homomorphisms.jl took $(round(t, digits=2))s"
|
|
|
|
|
|
|
|
if haskey(ENV, "CI")
|
|
|
|
_, t = @timed include("AutSigma_41.jl")
|
|
|
|
@info "AutSigma_41 took $(round(t, digits=2))s"
|
|
|
|
_, t = @timed include("AutSigma3.jl")
|
|
|
|
@info "AutSigma3 took $(round(t, digits=2))s"
|
|
|
|
end
|
|
|
|
|
|
|
|
_, t = @timed include("group_constructions.jl")
|
|
|
|
@info "Constructions took $(round(t, digits=2))s"
|
|
|
|
end
|
2022-04-02 14:43:52 +02:00
|
|
|
|
2022-04-02 15:53:55 +02:00
|
|
|
if !haskey(ENV, "CI")
|
|
|
|
include("benchmarks.jl")
|
2017-01-23 16:53:33 +01:00
|
|
|
end
|