Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/GAP/tst/teststandard/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 18.9.2025 mit Größe 1 kB image not shown  

Quelle  simplegrpit.tst   Sprache: unbekannt

 
## The independence test is not really correct because the simple groups
## iterator is not required to output the finite simple groups in order.
gap> START_TEST("simplegrpit.tst");

#
gap> it := SimpleGroupsIterator();
<iterator>
gap> IsDoneIterator(it);
false
gap> NextIterator(it); NextIterator(it); NextIterator(it); NextIterator(it);
A5
PSL(2,7)
A6
PSL(2,8)

#
gap> it := SimpleGroupsIterator(1);
<iterator>
gap> IsDoneIterator(it);
false
gap> NextIterator(it); NextIterator(it); NextIterator(it); NextIterator(it);
A5
PSL(2,7)
A6
PSL(2,8)

#
gap> it2 := ShallowCopy(it);
<iterator>
gap> NextIterator(it2) = NextIterator(it);
true
gap> NextIterator(it);; NextIterator(it);; NextIterator(it);;
gap> NextIterator(it) = NextIterator(it2);
false

#
gap> it := SimpleGroupsIterator(100000);
<iterator>
gap> NextIterator(it);
PSL(2,59)

#
gap> it := SimpleGroupsIterator(20000,80000:NOPSL2);;
gap> for g in it do Print(g,"\n"); od;
A8
PSL(3,4)
PSp(4,3)
Sz(8)
PSU(3,4)
gap> IsDoneIterator(it);
true
gap> it:=SimpleGroupsIterator(1053927211015007279,1053927211015007281);;
gap> for g in it do Print(g,"\n"); od;
PSL(3,179)

#
gap> STOP_TEST("simplegrpit.tst");

[ Dauer der Verarbeitung: 0.4 Sekunden  (vorverarbeitet)  ]