Skip to content

Commit

Permalink
Added test to make sure function works on simple semigroups that aren…
Browse files Browse the repository at this point in the history
…'t RMS already
  • Loading branch information
tillman-froehlich committed Jul 24, 2024
1 parent 4e0431a commit c51247b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tst/standard/attributes/isomorph.tst
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ gap> S := ReesMatrixSemigroup(Group([(1, 2, 3)]), N);
<Rees matrix semigroup 2x3 over Group([ (1,2,3) ])>
gap> IsIsomorphicSemigroup(R, S);
true
gap> R := SemigroupByMultiplicationTable(MultiplicationTable(R));;
gap> S := SemigroupByMultiplicationTable(MultiplicationTable(S));;
gap> IsIsomorphicSemigroup(R, S);
true
gap> L := [[(), ()], [(), ()], [(1, 2, 3), ()]];
[ [ (), () ], [ (), () ], [ (1,2,3), () ] ]
gap> T := ReesMatrixSemigroup(SymmetricGroup([1 .. 3]), L);
Expand Down

0 comments on commit c51247b

Please sign in to comment.