From 71a5efa7dbd3d05f9c27d15d0c27ee9f52fa8b29 Mon Sep 17 00:00:00 2001 From: Wilf Wilson Date: Mon, 25 Jan 2021 21:49:55 +0000 Subject: [PATCH] isomorph.tst: suppress incorrect "1 generators" output In a future GAP version, this will change to "1 generator", and so to maintain forwards and backwards compatibility we should hide the output. It's inconsequential anyway. --- tst/standard/isomorph.tst | 3 +-- tst/standard/isorms.tst | 10 ++++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/tst/standard/isomorph.tst b/tst/standard/isomorph.tst index c906462a8..73b1ca5ed 100644 --- a/tst/standard/isomorph.tst +++ b/tst/standard/isomorph.tst @@ -379,8 +379,7 @@ true # AutomorphismGroup gap> S := JonesMonoid(5); -gap> G := AutomorphismGroup(S); - +gap> G := AutomorphismGroup(S);; gap> StructureDescription(G); "C2" gap> S := FullTransformationMonoid(3); diff --git a/tst/standard/isorms.tst b/tst/standard/isorms.tst index 3a700bfe8..4a30e6db8 100644 --- a/tst/standard/isorms.tst +++ b/tst/standard/isorms.tst @@ -128,8 +128,9 @@ false gap> S := ReesZeroMatrixSemigroup(FullTransformationMonoid(2), > [[IdentityTransformation]]); > -gap> AutomorphismGroup(S); - +gap> G := AutomorphismGroup(S);; +gap> IsCyclic(G); +true # AutomorphismGroup: for a RZMSDigraph with 0 generators gap> func := function(n, i) @@ -150,8 +151,9 @@ gap> AutomorphismGroup(R); gap> R := ReesMatrixSemigroup(SymmetricInverseMonoid(2), [[PartialPerm([1])]]); > gap> GeneratorsOfSemigroup(R);; -gap> AutomorphismGroup(R); - +gap> G := AutomorphismGroup(R);; +gap> IsCyclic(G); +true # AutomorphismGroup: 1x1 RMS gap> R := ReesMatrixSemigroup(Group(()), [[()]]);