"Source: Text/Code/QECC.text";
"Line: 1574";
"Date: Thu Sep 25 14:47:47 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Code/QECC.text, line: 1574
// Example: H171E26 ()
print "Example: H171E26";
ei := GetEchoInput();
SetEchoInput(true);
F<w> := GF(4);
Q1 := QECC(F, 20, 10);
Q1:Minimal;
QECCLowerBound(F, 20, 10);
assert $1 eq 4;
QECCUpperBound(F, 20, 10);
assert $1 eq 4;
Q2 := QECC(F, 25, 13);
Q2:Minimal;
QECCLowerBound(F, 25, 13);
assert $1 eq 4;
QECCUpperBound(F, 25, 13);
assert $1 eq 5;
SetEchoInput(ei);
