"Source: Text/Geometry/AlgSrf.text";
"Line: 6050";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/AlgSrf.text, line: 6050
// Example: H126E34 ()
print "Example: H126E34";
ei := GetEchoInput();
SetEchoInput(true);
_<x,y,z,w> := PolynomialRing(GF(101),4);
S := x^3 + y^3 + z^3 + w^3 - (x+y+z+w)^3;
time a,b := IsIsomorphicCubicSurface(S, S);
#b;
assert $1 eq 120;
S := x^3 + 2*y^3 + 7*z^3 + 5*w^3 - y*z*w + x^2*w + 2*y*z^2;
time a,b := IsIsomorphicCubicSurface(S, S);
#b;
assert $1 eq 1;
S := x^3 + y^3 + z^3 + w^3;
time a,b := IsIsomorphicCubicSurface(S, S);
#b;
assert $1 eq 648;
SetEchoInput(ei);
