"Source: Text/Geometry/Scheme.text";
"Line: 4743";
"Date: Fri May 26 16:23:18 2023";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Scheme.text, line: 4743
// Example: H119E30 ()
print "Example: H119E30";
ei := GetEchoInput();
SetEchoInput(true);
P<a,b,c,d> := ProjectiveSpace(Rationals(),3);
S := Scheme (P, a^2*c^2 - b*d^3 + 2*a^2*b*c + a*b^3 - a*b^2*c +
                7*a*c^2*d + 4*a*b*d^2);
Dimension(S);
assert $1 eq 2;
time PS := PointSearch(S,100);
#PS; // not necessarily exhaustive
SetEchoInput(ei);
