-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add simple test for LatticeByCyclicExtension
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
gap> START_TEST("LatticeByCyclicExtension.tst"); | ||
|
||
# | ||
gap> G:=SmallGroup(625,1); | ||
<pc group of size 625 with 4 generators> | ||
gap> A:=AutomorphismGroup(G); | ||
<group of size 500 with 7 generators> | ||
gap> fun:=g->IsInt(4/Size(g));; | ||
gap> LatticeByCyclicExtension(A); | ||
<subgroup lattice of <group of size 500 with 7 generators>, 12 classes, | ||
12 subgroups> | ||
gap> LatticeByCyclicExtension(A, fun); | ||
<subgroup lattice of <group of size 500 with 7 generators>, 3 classes, | ||
3 subgroups, restricted under further condition l!.func> | ||
gap> LatticeByCyclicExtension(A, [fun,fun]); | ||
<subgroup lattice of <group of size 500 with 7 generators>, 3 classes, | ||
3 subgroups, restricted under further condition l!.func> | ||
|
||
# | ||
gap> STOP_TEST("LatticeByCyclicExtension.tst", 1); |