-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hopefully these versions are safe on 32 and 64 bit
- Loading branch information
1 parent
b117ade
commit 8ff3d0e
Showing
12 changed files
with
235 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# 2007/01/22 (SL) | ||
gap> F := GF(7,3);; | ||
gap> F1 := GF(F,2);; | ||
gap> F1 := GF(F,4);; | ||
gap> a := PrimitiveRoot(F1);; | ||
gap> B := Basis(F1);; | ||
gap> Coefficients(B,a^0); | ||
[ z0, 0z ] | ||
[ z0, 0z, 0z, 0z ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# 2007/02/14 (SL) | ||
gap> m:= [ [ Z(2,18)^0, 0*Z(2,18) ], | ||
> [ Z(2)^0+Z(2,18)+Z(2,18)^2+Z(2,18)^7+Z(2,18)^8+Z(2,18)^10+Z(2,18)^12 | ||
> +Z(2,18)^14+Z(2,18)^15, Z(2,18)^0 ] ];; | ||
gap> m:= [ [ Z(2,28)^0, 0*Z(2,28) ], | ||
> [ Z(2)^0+Z(2,28)+Z(2,28)^2+Z(2,28)^7+Z(2,28)^8+Z(2,28)^10+Z(2,28)^12 | ||
> +Z(2,28)^14+Z(2,28)^15, Z(2,28)^0 ] ];; | ||
gap> KroneckerProduct( [[Z(2)]], m ); | ||
[ <a GF2 vector of length 2>, [ 1+z+z2+z7+z8+z10+z12+z14+z15, z0 ] ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# 2007/02/23 (Max) | ||
gap> Enumerator(GF(74761)); | ||
<enumerator of GF(74761)> | ||
gap> Enumerator(GF(33554467)); | ||
<enumerator of GF(33554467)> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 2007/03/12 (SL) | ||
gap> z := Z(3,12)-Z(3,12); | ||
gap> z := Z(3,20)-Z(3,20); | ||
0z | ||
gap> DegreeFFE(z); | ||
1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 2007/03/20 (SL) | ||
gap> x := Z(2,18)^((2^18-1)/511);; | ||
gap> b := Basis(GF(512));; | ||
gap> x := Z(2,28)^((2^28-1)/16383);; | ||
gap> b := Basis(GF(2^14));; | ||
gap> Coefficients(b,x); | ||
[ 0z, z0, 0z, 0z, 0z, 0z, 0z, 0z, 0z ] | ||
[ 0z, z0, 0z, 0z, 0z, 0z, 0z, 0z, 0z, 0z, 0z, 0z, 0z, 0z ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# 2008/03/26 (TB) | ||
gap> FrobeniusCharacterValue( E(55), 2 ); | ||
z+z2+z3+z4+z5+z6+z8+z10+z12+z13+z14+z16+z17+z19 | ||
gap> FrobeniusCharacterValue( E(55), 2 ) = Z(2,20)^19065; | ||
true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters