Skip to content

Commit 8ac7e7d

Browse files
attr: add test for Issue #764
1 parent a49fd01 commit 8ac7e7d

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

tst/testinstall.tst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1760,6 +1760,19 @@ gap> Matrix(GF(4), One(S));;
17601760
gap> Size(Elements(S));
17611761
16
17621762

1763+
# Issue 764, InjectionPrincipalFactor can error for D-classes of semigroups of
1764+
# matrices over finite fields
1765+
gap> S := Semigroup(
1766+
> [Matrix(GF(3),
1767+
> [[Z(3), Z(3), Z(3) ^ 0],
1768+
> [0 * Z(3), Z(3), Z(3)],
1769+
> [Z(3), 0 * Z(3), Z(3) ^ 0]]),
1770+
> Matrix(GF(3),
1771+
> [[Z(3), Z(3), 0 * Z(3)],
1772+
> [Z(3) ^ 0, Z(3) ^ 0, 0 * Z(3)],
1773+
> [Z(3) ^ 0, Z(3) ^ 0, 0 * Z(3)]])]);;
1774+
gap> InjectionPrincipalFactor(DClass(S, S.1));;
1775+
17631776
# Issue 800, Quotient semigroup elements are not associative
17641777
gap> T := FullTransformationMonoid(2);;
17651778
gap> cong := SemigroupCongruence(T, []);;

0 commit comments

Comments
 (0)