"Source: Text/Code/CodeFld.text";
"Line: 2746";
"Date: Thu Sep 25 14:47:47 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Code/CodeFld.text, line: 2746
// Example: H165E26 ()
print "Example: H165E26";
ei := GetEchoInput();
SetEchoInput(true);
n := 11;
k := GF(5);
_<x> := PolynomialRing(k);
a := k!3;
f := Factorisation( x^n - a );
f;
f1 := f[2][1];
C1 := ConstaCyclicCode(n, f1, a);
E<p, q> :=  WeightEnumerator(C1);
f2 := f[3][1];
C2 := ConstaCyclicCode(n, f2, a);
iseq := IsEquivalent( C1, C2); iseq;
SetEchoInput(ei);
