Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  semiact.tst   Sprache: unbekannt

 
#############################################################################
##
#W  standard/main/semiact.tst
#Y  Copyright (C) 2016-2022                              James D. Mitchell
##
##  Licensing information can be found in the README file of this package.
##
#############################################################################
##

#@local I, S, T, acting, an, regular, x
gap> START_TEST("Semigroups package: standard/main/semiact.tst");
gap> LoadPackage("semigroups", false);;

#
gap> SEMIGROUPS.StartTest();

# ClosureSemigroup, for an acting semigroup
gap> S := Semigroup(IdentityTransformation);;
gap> Size(S);
1
gap> S := ClosureSemigroup(S, AsSet(FullTransformationMonoid(3)));;
gap> Size(S);
27
gap> S := Semigroup(Transformation([2, 1, 2]));;
gap> Size(S);
2
gap> S := ClosureSemigroup(S, AsSet(OrderEndomorphisms(5)));;
gap> Size(S);
576
gap> S := ClosureSemigroup(S, AsSet(OrderAntiEndomorphisms(5)));;
gap> Size(S);
1927
gap> S := Semigroup(IdentityTransformation);;
gap> S := ClosureSemigroup(S, Transformation([2, 1]));;
gap> S := AsSemigroup(IsTransformationSemigroup, 
>                     Semigroup(Matrix(IsBooleanMat, [[0, 0], [0, 0]])));;
gap> S := ClosureSemigroup(S, AsSemigroup(IsTransformationSemigroup,
>                                         RegularBooleanMatMonoid(3)));;
gap> # The next result is correct, since different embeddings are used
gap> # in the previous two lines.
gap> Size(S); 
27874
gap> S := ClosureSemigroup(S, AsSemigroup(IsTransformationSemigroup,
>                                         FullBooleanMatMonoid(3)));;
gap> Size(S);
27880
gap> S := InverseSemigroup(PartialPerm([1 .. 3]));;
gap> Size(S);
1
gap> S := ClosureInverseSemigroup(S, AsSet(SymmetricInverseMonoid(6)));;
gap> Size(S);
13327
gap> S := InverseSemigroup(PartialPerm([1, 2, 3, 4, 5, 6], 
> [1, 3, 4, 5, 2, 6]));;
gap> Size(S);
4
gap> S := ClosureInverseSemigroup(S, AsSet(POPI(6)));;
gap> Size(S);
13327
gap> S := InverseSemigroup(PartialPerm([1 .. 3]));;
gap> S := ClosureInverseSemigroup(S, PartialPerm([2, 1]));;
gap> I := SemigroupIdeal(S, S.1);;
gap> ClosureInverseSemigroup(I, PartialPerm([1 .. 7]));;

# Random, for an acting semigroup
gap> S := Semigroup(FullTransformationMonoid(4), rec(acting := true));;
gap> IsActingSemigroup(S);
true
gap> Random(S);;
gap> Size(S);;
gap> Random(S);;
gap> IsRegularSemigroup(S);
true
gap> I := SemigroupIdeal(S, S.1);;
gap> Random(I);;

# Random, for an regular acting semigroup rep
gap> S := OrderEndomorphisms(5);;
gap> IsRegularActingSemigroupRep(S); 
true
gap> Random(S);;
gap> NrRClasses(S);;
gap> Random(S);;
gap> NrLClasses(S);;
gap> Random(S);;
gap> I := SemigroupIdeal(S, S.1);;
gap> Random(I);;

# Random, for an inverse acting semigroup rep
gap> S := POPI(5);;
gap> IsInverseActingSemigroupRep(S) or not IsActingSemigroup(S); 
true
gap> Random(S);;
gap> NrRClasses(S);;
gap> Random(S);;
gap> NrLClasses(S);;
gap> Random(S);;
gap> I := SemigroupIdeal(S, S.1);;
gap> Random(I);;

# \in, for an regular acting semigroup rep
gap> S := Semigroup(OrderEndomorphisms(5), rec(regular := true));;
gap> IsRegularActingSemigroupRep(S); 
true
gap> Size(S);
126
gap> ConstantTransformation(6, 1) in S;
false
gap> PartialPerm([1]) in S;
false
gap> Enumerate(S);;
gap> S.1 in S;
true
gap> Transformation([2, 1]) in S;
false
gap> S := RegularSemigroup(Transformation([1, 1, 1]));;
gap> x := Transformation([1, 2, 2]);;
gap> x in S;
false
gap> S := RegularSemigroup(x);;
gap> MinimalIdeal(S);;
gap> Transformation([1, 1, 1]) in S;
false
gap> S := RegularSemigroup(x);;
gap> AsSet(S);;
gap> Transformation([1, 1, 1]) in S;
false
gap> S := RegularSemigroup(x);;
gap> Transformation([2, 3, 3]) in S;
false
gap> Transformation([1, 1, 2]) in S;
false
gap> x in S;
true
gap> Size(S);
1
gap> S := AsSemigroup(IsTransformationSemigroup, AlternatingGroup(3));;
gap> S := DirectProduct(S, Semigroup(Transformation([1, 1, 1])));;
gap> S := Semigroup(S, Transformation([1, 1, 2]), rec(acting := true, 
> regular := true));
<regular transformation semigroup of degree 6 with 3 generators>
gap> Number(FullTransformationMonoid(3), x -> x in S);
2
gap> S := AsSemigroup(IsTransformationSemigroup, AlternatingGroup(3));;
gap> S := Semigroup(S, Transformation([1, 1, 2]), rec(acting := true, 
> regular := true));
<regular transformation semigroup of degree 3 with 2 generators>
gap> Number(FullTransformationMonoid(3), x -> x in S);
24
gap> S := PartitionMonoid(3);;
gap> T := Bipartition([[1, -2], [2], [3, -3], [-1]]);;
gap> I := SemigroupIdeal(S, T);
<regular bipartition *-semigroup ideal of degree 3 with 1 generator>
gap> S := OrderEndomorphisms(7);;
gap> Transformation([2, 4, 4, 4, 7, 7, 7]) in S;
true

# \in, for an inverse acting semigroup rep
gap> S := InverseSemigroup(POPI(5));;
gap> IsInverseActingSemigroupRep(S) or not IsActingSemigroup(S); 
true
gap> ConstantTransformation(6, 1) in S;
false
gap> PartialPerm([1]) in S;
true
gap> AsSSortedList(S);;
gap> Enumerate(S);;
gap> S.1 in S;
true
gap> PartialPerm([3, 5]) in S;
true
gap> PartialPerm([5, 3]) in S;
true
gap> PartialPerm([1 .. 6]) in S;
false
gap> PartialPerm([5, 4, 3, 2, 1]) in S;
false
gap> S := InverseSemigroup(PartialPerm([5], [5]));;
gap> IsInverseActingSemigroupRep(S) or not IsActingSemigroup(S); 
true
gap> PartialPerm([2, 1]) in S;
false
gap> S := InverseSemigroup(PartialPerm([0, 3, 2]));;
gap> IsInverseActingSemigroupRep(S) or not IsActingSemigroup(S); 
true
gap> MinimalIdeal(S);;
gap> PartialPerm([]) in S;
false
gap> PartialPerm([2, 0, 3]) in S;
false
gap> S := InverseSemigroup([
> PartialPerm([2], [3]), PartialPerm([2, 3], [1, 4]),
> PartialPerm([2, 3], [2, 1]), PartialPerm([2, 4], [2, 3]),
> PartialPerm([2, 3], [3, 4]), PartialPerm([1, 3], [2, 3])]);;
gap> IsInverseActingSemigroupRep(S) or not IsActingSemigroup(S); 
true
gap> Number(SymmetricInverseMonoid(4), x -> x in S) = Size(S);
true

#
gap> SEMIGROUPS.StopTest();
gap> STOP_TEST("Semigroups package: standard/main/semiact.tst");

[ Dauer der Verarbeitung: 0.23 Sekunden  (vorverarbeitet)  ]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge