1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-07-12 01:35:30 +02:00

make sure we don't reduce if not asked

This commit is contained in:
kalmarek 2018-03-27 20:15:28 +02:00
parent 7139322d05
commit 8cd10c0bfa

View File

@ -177,6 +177,13 @@
@test g == A(Groups.perm_autsymbol([2,1,3,4]))
g_im = g(Groups.domain(A))
@test length(g_im[1]) == 5
@test length(g_im[2]) == 3
@test length(g_im[3]) == 1
@test length(g_im[4]) == 1
@test length.(Groups.reduce!.(g_im)) == (1,1,1,1)
end
@testset "specific Aut(F4) tests" begin