Dear GAP-Forum,
I got a couple of eMails over the last days from people who were not sure
whether the bugfix was indeed applied correctly, as the zoo uncompressors
give no feedback.
Therefore I append a file to this mail that should run through GAP without
producing any error messages, if the fix has been applied correctly. If it
still produces errors, please check:
- Whether you have permissions to overwrite the patched library files.
- If you used 'unzoo': whether you called 'unzoo -x fix2.zoo' (omitting the
'-x' option just lists the archives contents without extracting the
files).
I hope this is of help,
Alexander Hulpke
#############################################################################
# these commands should run without error if fix2 has been applied.
#
G:=GeneralUnitaryGroup(4,2);
P:=Stabilizer(G,[1,0,0,0]*Z(2));
Size(P);
cp:=CharTable(P);
x:=X(Rationals);
Galois(x^8-4*x^7-8*x^6+38*x^5+17*x^4-102*x^3-18*x^2+76*x+17);
f:= FreeGroup( 1 );
f:= f / [ f.1^2 ];
Elements( f );
x:= f.1^3;
gap> x in f;
if not IsSubset( f, [ x ] ) then
Error("not yet fixed!");
fi;