Skip to content

Commit

Permalink
Added test file
Browse files Browse the repository at this point in the history
  • Loading branch information
hulpke committed Oct 19, 2018
1 parent 9cc9d77 commit 7697679
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tst/teststandard/opers/Normalizer.tst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
gap> START_TEST("Normalizer.tst");
gap> r:=Integers mod 4;;
gap> maz:=[ [ [ 3, 1, 2, 1 ], [ 1, 2, 1, 1 ], [ 2, 1, 1, 3 ], [ 1, 1, 3, 2 ] ],
> [ [ 1, 1, 3, 2 ], [ 1, 3, 2, 3 ], [ 3, 2, 3, 3 ], [ 2, 3, 3, 1 ] ] ];;
gap> G:=GL(4,r);;
gap> U:=Group(maz*One(r));;
gap> hom:=IsomorphismPermGroup(G);;
gap> g:=Image(hom,G);;u:=Image(hom,U);;
gap> Normalizer(g,u)=NormalizerViaRadical(g,u);
true
gap> STOP_TEST("Normalizer.tst", 1);

0 comments on commit 7697679

Please sign in to comment.