"Source: Text/Code/CodeFld.text";
"Line: 3821";
"Date: Thu Sep 25 14:47:47 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Code/CodeFld.text, line: 3821
// Example: H165E36 ()
print "Example: H165E36";
ei := GetEchoInput();
SetEchoInput(true);
SetPrintLevel("Minimal");
C1 := BCHCode(GF(2),63,10,57);
P<x> := PolynomialRing(GF(2));
p := x^28 + x^25 + x^22 + x^21 + x^20 + x^17 + x^16
     + x^15 + x^9 + x^8 + x^6 + x^5 + x + 1;
C2 := CyclicCode(63, p);
C3 := BCHCode(GF(2), 63, 10, 58);
C1; C2; C3;
MinimumDistance(C1 meet C2);
assert $1 eq 12;
C := ConstructionXX(C1, C2, C3, BKLC(GF(2),3,3), BKLC(GF(2),7,6) );
C;
MinimumDistance(C);
SetEchoInput(ei);
