Skip to content

Commit

Permalink
More canonical tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJefferson committed Aug 16, 2021
1 parent 716aad2 commit 85e47b8
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tst/canonical-grp-3.tst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#@local
gap> START_TEST("canonical-grp-3.tst");
gap> ReadPackage("vole", "tst/test_functions.g");
true

#
gap> QC_Check([IsPermGroup, IsPermGroup],
> function(g,s)
> local lmp;
> lmp := Maximum(LargestMovedPoint(g), LargestMovedPoint(s), 2);
> return VoleTestCanonical(lmp, g, s,
> {x} -> [VoleCon.Stabilize(x)],
> {x,p} -> x^p);
> end);
true

#
gap> STOP_TEST("canonical-grp-3.tst");
18 changes: 18 additions & 0 deletions tst/canonical-grp-4.tst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#@local
gap> START_TEST("canonical-grp-4.tst");
gap> ReadPackage("vole", "tst/test_functions.g");
true

#
gap> QC_Check([IsPermGroup],
> function(s)
> local lmp;
> lmp := Maximum( LargestMovedPoint(s), 2);
> return VoleTestCanonical(lmp, SymmetricGroup(lmp), s,
> {x} -> [VoleCon.Stabilize(x)],
> {x,p} -> x^p);
> end);
true

#
gap> STOP_TEST("canonical-grp-4.tst");

0 comments on commit 85e47b8

Please sign in to comment.