Skip to content

Commit

Permalink
Added test examples to whip up coverage rate
Browse files Browse the repository at this point in the history
  • Loading branch information
hulpke committed Oct 31, 2020
1 parent 6a42bbf commit 54b0733
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tst/teststandard/opers/Lattice.tst
@@ -0,0 +1,10 @@
gap> START_TEST("Lattice.tst");

#
gap> g:=PerfectGroup(IsPermGroup,30720,10);;
gap> l:=LowLayerSubgroups(g,2);;
gap> [Length(l),Sum(l,Size)];
[ 41, 80896 ]

#
gap> STOP_TEST("Lattice.tst",1);
12 changes: 12 additions & 0 deletions tst/teststandard/permgrp.tst
Expand Up @@ -121,5 +121,17 @@ gap> l:=[];;for i in it do Add(l,i);od;Length(l);
gap> it:=DescSubgroupIterator(g:skip:=20);;
gap> l:=[];;for i in it do Add(l,i);od;

# conjugator
gap> w:=WreathProduct(SymmetricGroup(6),Group((1,2)));;
gap> d:=DerivedSubgroup(w);;
gap> d:=DerivedSubgroup(d);;
gap> a:=Image(Embedding(w,3),(1,2));;
gap> hom:=ConjugatorAutomorphism(w,a);;
gap> hom:=AsGroupGeneralMappingByImages(hom);;
gap> HasIsConjugatorAutomorphism(hom);
false
gap> IsConjugatorAutomorphism(hom);
true

#
gap> STOP_TEST( "permgrp.tst", 1);

0 comments on commit 54b0733

Please sign in to comment.