"Source: Text/Ring/RngOrd.text";
"Line: 8695";
"Date: Fri May 26 16:23:18 2023";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Ring/RngOrd.text, line: 8695
// 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);
