"Source: Text/Geometry/Polyhedra.text";
"Line: 1286";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/Polyhedra.text, line: 1286
// Example: H156E6 ()
print "Example: H156E6";
ei := GetEchoInput();
SetEchoInput(true);
P:=Polytope([[62,23],[-8,-3],[-27,-10]]);
NF:=NormalForm(P);
NF;
NormalForm(PolytopeOfWPS([1,1,2])) eq NF;
assert $1;
NF,perm:=NormalForm(P);
perm;
vertsP:=PermuteSequence(Vertices(P),perm);
VP:=Matrix(vertsP);
VQ:=Matrix(NF);
M:=Solution(Transpose(VP),Transpose(VQ));
M:=Transpose(M);
M;
P * M;
SetEchoInput(ei);
