"Source: Text/Geometry/AlgSrf.text";
"Line: 4392";
"Date: Mon Mar 29 22:30:18 2021";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/AlgSrf.text, line: 4392
// Example: H123E23 ()
print "Example: H123E23";
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);
