Skip to content

Commit

Permalink
Add a testfile for HallSubgroup
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspf committed Jan 30, 2016
1 parent e92af13 commit 68bf30d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tst/testinstall/opers/HallSubgroup.tst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
gap> START_TEST("HallSubgroup.tst");
gap> G := GL(3,4);;
gap> HallSubgroup(G, [2,3]);
fail
gap> G := PSL(4,2);;
gap> HallSubgroup(G, [2,3]);
<permutation group of size 576 with 8 generators>
gap> G := PSp(4,5);;
gap> HallSubgroup(G,[2,3]);
<permutation group of size 576 with 8 generators>
gap> G := Group([ [ [ Z(2)^0, 0*Z(2), 0*Z(2) ],
> [ 0*Z(2), Z(2)^0, 0*Z(2) ],
> [ 0*Z(2), Z(2)^0, Z(2)^0 ] ],
> [ [ 0*Z(2), Z(2)^0, 0*Z(2) ],
> [ 0*Z(2), 0*Z(2), Z(2)^0 ],
> [ Z(2)^0, 0*Z(2), 0*Z(2) ] ] ]);;
gap> HallSubgroup(G, [2,3]);
[ <matrix group of size 24 with 4 generators>,
<matrix group of size 24 with 4 generators> ]
gap> STOP_TEST("HallSubgroup.tst", 10000);

0 comments on commit 68bf30d

Please sign in to comment.