"Source: Text/Geometry/AlgSrf.text";
"Line: 5954";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/AlgSrf.text, line: 5954
// Example: H126E32 ()
print "Example: H126E32";
ei := GetEchoInput();
SetEchoInput(true);
P2 := ProjectiveSpace(RationalField(),2);
pts := [P2| [-5,-10,-8], [-4,10,-4], [8,-2,-5], [0,-10,0], [1,5,7], [-7,-8,-6]];
S := DelPezzoSurface(pts);
_<W, X, Y, Z> := AmbientSpace(S); // give names to the variables
S;
MinimizeReduce(S);
T := DelPezzoSurface(pts[1..5]);
_<V, W, X, Y, Z> := AmbientSpace(T);
T;
MinimizeReduce(T);
SetEchoInput(ei);
