"Source: Text/Geometry/AlgSrf.text";
"Line: 4392";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/AlgSrf.text, line: 4392
// Example: H126E23 ()
print "Example: H126E23";
ei := GetEchoInput();
SetEchoInput(true);
P<x,y,z,w> := ProjectiveSpace(Rationals(), 3);
F := w^3*y^2*z+(x*z+w^2)^3;
S := Surface(P,F);
desing := ResolveSingularSurface(S : AdjComp := true);
#desing;
assert $1 eq 18;
HomAdjoints(1, 0, S);
HomAdjoints(1, 1, S);
HomAdjoints(1, 2, S);
HomAdjoints(1, 3, S);
assert #$1 eq 19;

HomAdjoints(2, 0, S);
HomAdjoints(2, 1, S);
HomAdjoints(2, 2, S);
HomAdjoints(2, 3, S);
assert #$1 eq 7;
SetEchoInput(ei);
