Eine aufbereitete Darstellung der Quelle

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

Benutzer

Quelle  wordrep.tst   Sprache: unbekannt

 
Spracherkennung für: .tst vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

#
gap> START_TEST("wordrep.tst");

#
gap> f := FreeGroup(IsSyllableWordsFamily,4);;
gap> fam := FamilyObj(f.1);
<Family: "FreeGroupElementsFamily">

#
gap> w8:=ObjByExtRep(fam,[1,1,2,-10,1,4]); Is8BitsAssocWord(w8);
f1*f2^-10*f1^4
true
gap> ExtRepOfObj(w8);
112, -1014 ]
gap> w16:=ObjByExtRep(fam,[1,2^10,2,-10,1,4]); Is16BitsAssocWord(w16);
f1^1024*f2^-10*f1^4
true
gap> ExtRepOfObj(w16);
110242, -1014 ]
gap> w32:=ObjByExtRep(fam,[1,2^20,2,-10,1,4]); Is32BitsAssocWord(w32);
f1^1048576*f2^-10*f1^4
true
gap> ExtRepOfObj(w32);
110485762, -1014 ]
gap> winf:=ObjByExtRep(fam,[1,2^40,2,-10,1,4]);; IsInfBitsAssocWord(winf);
true
gap> ExtRepOfObj(winf);
110995116277762, -1014 ]

#
# ExponentSums
#

#
gap> ExponentSums(w8);
5, -1000 ]
gap> ExponentSums(w8, 34);
00 ]
gap> ExponentSums(w8, 41);
[  ]
gap> ExponentSums(w8, 01);
Error, NBits_ExponentSums3: <start> must be a positive small integer (not the \
integer 0)
gap> ExponentSums(w8, 10);
Error, NBits_ExponentSums3: <end> must be a positive small integer (not the in\
teger 0)

#
gap> ExponentSums(w16);
1028, -1000 ]
gap> ExponentSums(w16, 34);
00 ]
gap> ExponentSums(w16, 41);
[  ]
gap> ExponentSums(w16, 01);
Error, NBits_ExponentSums3: <start> must be a positive small integer (not the \
integer 0)
gap> ExponentSums(w16, 10);
Error, NBits_ExponentSums3: <end> must be a positive small integer (not the in\
teger 0)

#
gap> ExponentSums(w32);
1048580, -1000 ]
gap> ExponentSums(w32, 34);
00 ]
gap> ExponentSums(w32, 41);
[  ]
gap> ExponentSums(w32, 01);
Error, NBits_ExponentSums3: <start> must be a positive small integer (not the \
integer 0)
gap> ExponentSums(w32, 10);
Error, NBits_ExponentSums3: <end> must be a positive small integer (not the in\
teger 0)

#
gap> ExponentSums(winf);
1099511627780, -1000 ]
gap> ExponentSums(winf, 34);
00 ]
gap> ExponentSums(winf, 41);
[  ]
gap> ExponentSums(winf, 01);
Error, <from> must be a positive integer
gap> ExponentSums(winf, 10);
Error, <to> must be a positive integer

#
# syllables
#

#
gap> words := [w8, w16, w32, winf];;
gap> ForAll(words, w -> GeneratorSyllable(w, 2) = 2);
true
gap> ForAll(words, w -> ExponentSyllable(w, 2) = -10);
true

#
gap> 8Bits_ExponentSyllable(w8, 4);
Error, NBits_ExponentSyllable: <pos> must be an integer between 1 and 3 (not t\
he integer 4)
gap> 16Bits_ExponentSyllable(w16, 4);
Error, NBits_ExponentSyllable: <pos> must be an integer between 1 and 3 (not t\
he integer 4)
gap> 32Bits_ExponentSyllable(w32, 4);
Error, NBits_ExponentSyllable: <pos> must be an integer between 1 and 3 (not t\
he integer 4)

#
gap> 8Bits_GeneratorSyllable(w8, 4);
Error, NBits_GeneratorSyllable: <pos> must be an integer between 1 and 3 (not \
the integer 4)
gap> 16Bits_GeneratorSyllable(w16, 4);
Error, NBits_GeneratorSyllable: <pos> must be an integer between 1 and 3 (not \
the integer 4)
gap> 32Bits_GeneratorSyllable(w32, 4);
Error, NBits_GeneratorSyllable: <pos> must be an integer between 1 and 3 (not \
the integer 4)

#
# test powering (esp. 8Bits_Power), with various shapes
#

# special case: w * gi^n * w^-1
gap> u8:=ObjByExtRep(fam,[1,12,11,-1]); u8^0; u8^1; u8^-1; u8^3; u8^-3; u8^100;
f1*f2*f1^-1
<identity ...>
f1*f2*f1^-1
f1*f2^-1*f1^-1
f1*f2^3*f1^-1
f1*f2^-3*f1^-1
f1*f2^100*f1^-1
gap> u16:=ObjByExtRep(fam,[1,12,2^101,-1]); u16^0; u16^1; u16^-1; u16^3; u16^-3; u16^100;
f1*f2^1024*f1^-1
<identity ...>
f1*f2^1024*f1^-1
f1*f2^-1024*f1^-1
f1*f2^3072*f1^-1
f1*f2^-3072*f1^-1
f1*f2^102400*f1^-1
gap> u32:=ObjByExtRep(fam,[1,12,2^201,-1]); ExtRepOfObj(u32);
f1*f2^1048576*f1^-1
11210485761, -1 ]
gap> ExtRepOfObj(u32^0);
[  ]
gap> ExtRepOfObj(u32^1);
11210485761, -1 ]
gap> ExtRepOfObj(u32^-1);
112, -10485761, -1 ]
gap> ExtRepOfObj(u32^3);
11231457281, -1 ]
gap> ExtRepOfObj(u32^-3);
112, -31457281, -1 ]
gap> u32^100;;
gap> uinf:=ObjByExtRep(fam,[1,12,2^401,-1]);; ExtRepOfObj(uinf);
11210995116277761, -1 ]
gap> ExtRepOfObj(uinf^0);
[  ]
gap> ExtRepOfObj(uinf^1);
11210995116277761, -1 ]
gap> ExtRepOfObj(uinf^-1);
112, -10995116277761, -1 ]
gap> ExtRepOfObj(uinf^3);
11232985348833281, -1 ]
gap> ExtRepOfObj(uinf^-3);
112, -32985348833281, -1 ]
gap> uinf^100;;

# special case: w * gj^x * t * gj^y * w^-1, x != -y
gap> v8:=ObjByExtRep(fam,[1,12,13,14,-12,21,-1]); v8^0; v8^1; v8^-1; v8^3; v8^-3; v8^100;
f1*f2*f3*f4^-1*f2^2*f1^-1
<identity ...>
f1*f2*f3*f4^-1*f2^2*f1^-1
f1*f2^-2*f4*f3^-1*f2^-1*f1^-1
f1*(f2*f3*f4^-1*f2^2)^3*f1^-1
f1*(f2^-2*f4*f3^-1*f2^-1)^3*f1^-1
f1*(f2*f3*f4^-1*f2^2)^100*f1^-1
gap> v16:=ObjByExtRep(fam,[1,12,13,2^104,-12,21,-1]); v16^0; v16^1; v16^-1; v16^3; v16^-3; v16^100;;
f1*f2*f3^1024*f4^-1*f2^2*f1^-1
<identity ...>
f1*f2*f3^1024*f4^-1*f2^2*f1^-1
f1*f2^-2*f4*f3^-1024*f2^-1*f1^-1
f1*(f2*f3^1024*f4^-1*f2^2)^3*f1^-1
f1*(f2^-2*f4*f3^-1024*f2^-1)^3*f1^-1
gap> v32:=ObjByExtRep(fam,[1,12,13,2^204,-12,21,-1]);; ExtRepOfObj(v32);
1121310485764, -1221, -1 ]
gap> ExtRepOfObj(v32^0);
[  ]
gap> ExtRepOfObj(v32^-1);
112, -2413, -10485762, -11, -1 ]
gap> ExtRepOfObj(v32^3);
1121310485764, -123310485764, -12331048576
  4, -1221, -1 ]
gap> ExtRepOfObj(v32^-3);
112, -2413, -10485762, -3413, -10485762, -3413
  -10485762, -11, -1 ]
gap> v32^100;;

# general case: w * t * w^-1
gap> x8:=ObjByExtRep(fam,[1,12,13,14,-1]); x8^0; x8^1; x8^-1; x8^3; x8^-3; x8^100;
f1*f2*f3*f4^-1
<identity ...>
f1*f2*f3*f4^-1
f4*f3^-1*f2^-1*f1^-1
(f1*f2*f3*f4^-1)^3
(f4*f3^-1*f2^-1*f1^-1)^3
(f1*f2*f3*f4^-1)^100
gap> x16:=ObjByExtRep(fam,[1,12,13,2^104,-1]); x16^0; x16^1; x16^-1; x16^3; x16^-3;
f1*f2*f3^1024*f4^-1
<identity ...>
f1*f2*f3^1024*f4^-1
f4*f3^-1024*f2^-1*f1^-1
(f1*f2*f3^1024*f4^-1)^3
(f4*f3^-1024*f2^-1*f1^-1)^3
gap> ExtRepOfObj(x16^100) = Concatenation(ListWithIdenticalEntries(100, ExtRepOfObj(x16)));
true
gap> x32:=ObjByExtRep(fam,[1,12,13,2^204,-1]);;
gap> ExtRepOfObj(x32);
1121310485764, -1 ]
gap> for i in [0,1,-1,3,-3] do Print(ExtRepOfObj(x32^i),"\n"); od;
[  ]
1121310485764, -1 ]
413, -10485762, -11, -1 ]
1121310485764, -11121310485764, -11121
  310485764, -1 ]
413, -10485762, -11, -1413, -10485762, -11, -1413
  -10485762, -11, -1 ]

#
# test overflow checks when powering
#

#
gap> a8:=ObjByExtRep(fam,[1,1]);; Is8BitsAssocWord(a8);
true
gap> 8Bits_Power(a8,2^10);
"TRY_NEXT_METHOD"
gap> p16:=a8^(2^10);; ExtRepOfObj(p16);
11024 ]
gap> Is16BitsAssocWord(p16);
true

#
gap> a16:=ObjByExtRep(fam,[1,2^10]);; Is16BitsAssocWord(a16);
true
gap> 16Bits_Power(a16,2^10);
"TRY_NEXT_METHOD"
gap> p32:=a16^(2^10);; ExtRepOfObj(p32);
11048576 ]
gap> Is32BitsAssocWord(p32);
true

#
gap> a32:=ObjByExtRep(fam,[1,2^26]);; Is32BitsAssocWord(a32);
true
gap> 32Bits_Power(a32,2^10);
"TRY_NEXT_METHOD"
gap> pinf:=a32^(2^10);; ExtRepOfObj(pinf);
168719476736 ]
gap> IsInfBitsAssocWord(pinf);
true

#
# quotients
#
gap> words8 := [u8,v8,w8,x8,a8];; ForAll(words8, Is8BitsAssocWord);
true
gap> words16 := [u16,v16,w16,x16,a16,p16];; ForAll(words16, Is16BitsAssocWord);
true
gap> words32 := [u32,v32,w32,x32,a32,p32];; ForAll(words32, Is32BitsAssocWord);
true

#
gap> SetX(words8, words8, {a,b} -> (a/b) * b = a);
[ true ]
gap> SetX(words16, words16, {a,b} -> (a/b) * b = a);
[ true ]
gap> SetX(words32, words32, {a,b} -> (a/b) * b = a);
[ true ]

# MappedWord with inverses
gap> f:=FreeGroup(2);;
gap> gens:=ShallowCopy(GeneratorsOfGroup(f));;
gap> g:=GL(10,17);;
gap> m:=List([1,2],x->PseudoRandom(g));;
gap> w:=PseudoRandom(f:radius:=10000);;
gap> gens:=ShallowCopy(GeneratorsOfGroup(f));;
gap> e1:=MappedWord(w,gens,m);;
gap> Append(gens,List(gens,x->x^-1));
gap> Append(m,List(m,x->x^-1));
gap> e2:=MappedWord(w,gens,m);;
gap> e1=e2;
true
gap> g:=FreeGroup(IsSyllableWordsFamily,2);;
gap> w:=MappedWord(w,gens{[1,2]},GeneratorsOfGroup(g));;
gap> gens:=ShallowCopy(GeneratorsOfGroup(g));;
gap> e2:=MappedWord(w,gens,m{[1,2]});;
gap> e1=e2;
true
gap> Append(gens,List(gens,x->x^-1));
gap> e2:=MappedWord(w,gens,m);;
gap> e1=e2;
true

#
gap> f:= FreeGroup(IsLetterWordsFamily,4);;
gap> IsMutable(ExtRepOfObj(f.1));
true
gap> IsMutable(ExtRepOfObj(f.1));
true

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

[Dauer der Verarbeitung: 0.16 Sekunden, vorverarbeitet 2026-06-14]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik