"Source: Text/Ring/RngOrd.text";
"Line: 8883";
"Date: Fri Sep 26 14:51:59 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Ring/RngOrd.text, line: 8883
// Example: H39E40 ()
print "Example: H39E40";
ei := GetEchoInput();
SetEchoInput(true);
Ax<x> := PolynomialRing(Integers());
f := x^4 + 12*x^3 + 54*x^2 + 108*x + 89;
L := NumberField(f);
p := 2;
I := OMRepresentation(L,[L.1,p^12]);
pIntegralBasis(I,p);
pIntegralBasis(I,p:HNF:=true); // In HNF
Basis(I);
Basis(I : HNF := true);
SetEchoInput(ei);
