"Source: Text/Code/CodeLDPC.text";
"Line: 96";
"Date: Thu Sep 25 14:47:47 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Code/CodeLDPC.text, line: 96
// Example: H167E1 ()
print "Example: H167E1";
ei := GetEchoInput();
SetEchoInput(true);
C1 := RegularLDPCEnsemble(10, 2, 4);
C2 := RegularLDPCEnsemble(10, 2, 4);
C1 eq C2;                           
assert not $1;
LDPCMatrix(C1):Magma;
H := LDPCMatrix(C1);
C3 := LDPCCode(H);
C3 eq C1;
assert $1;
SetEchoInput(ei);
