Skip to content

Commit f264711

Browse files
committedDec 31, 2024·
A few more "whitespace" corrections to the manual from guava04.tst
1 parent 265fa15 commit f264711

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎doc/guava.xml

+5-3
Original file line numberDiff line numberDiff line change
@@ -2079,13 +2079,15 @@ doubly-even
20792079
gap> C:=BinaryGolayCode();
20802080
a cyclic [23,12,7]3 binary Golay code over GF(2)
20812081
gap> WeightDistribution(C);
2082-
[ 1, 0, 0, 0, 0, 0, 0, 253, 506, 0, 0, 1288, 1288, 0, 0, 506, 253, 0, 0, 0, 0, 0, 0, 1 ]
2082+
[ 1, 0, 0, 0, 0, 0, 0, 253, 506, 0, 0, 1288, 1288, 0, 0, 506, 253, 0, 0, 0,
2083+
0, 0, 0, 1 ]
20832084
gap> IsDoublyEvenCode(C);
20842085
false
20852086
gap> C:=ExtendedCode(C);
20862087
a linear [24,12,8]4 extended code
20872088
gap> WeightDistribution(C);
2088-
[ 1, 0, 0, 0, 0, 0, 0, 0, 759, 0, 0, 0, 2576, 0, 0, 0, 759, 0, 0, 0, 0, 0, 0, 0, 1 ]
2089+
[ 1, 0, 0, 0, 0, 0, 0, 0, 759, 0, 0, 0, 2576, 0, 0, 0, 759, 0, 0, 0, 0, 0, 0,
2090+
0, 1 ]
20892091
gap> IsDoublyEvenCode(C);
20902092
true
20912093
</Example>
@@ -3193,7 +3195,7 @@ gap> # Extended ternary quadratic residue code of length 48
31933195
gap> n := 47;;
31943196
gap> x := Indeterminate(GF(3));;
31953197
gap> F := Factors(x^n-1);;
3196-
gap> v := NullVector(n,GF(3));
3198+
gap> v := NullVector(n,GF(3));;
31973199
gap> v := v + ShallowCopy(VectorCodeword( Codeword(F[2]) ));;
31983200
gap> G := CirculantMatrix(24, v);;
31993201
gap> for i in [1..Size(G)] do; s:=Zero(GF(3));

0 commit comments

Comments
 (0)
Please sign in to comment.