source: git/Tst/Old/mora1.tst @ e84f553

fieker-DuValspielwiese
Last change on this file since e84f553 was d7d8ab3, checked in by Hans Schönemann <hannes@…>, 25 years ago
*hannes: OLD_MINOR git-svn-id: file:///usr/local/Singular/svn/trunk@3270 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 616 bytes
Line 
1//=== f:=f(11,10,3,1)//i:=fx,fy,fz
2
3ring r3=32003,(x,y,z),ds;
4int a =11;
5int b =10;
6int c =3;
7int t =1;
8poly f =x^a+y^b+z^(3*c)+x^(c+2)*y^(c-1)+x^(c-1)*y^(c-1)*z3+x^(c-2)*y^c*(y2+t*x)^2;
9ideal i= jacob(f);
10ideal i0=std( i);
11size(i0);
12degree(i0);
13option(fastHC);
14i0=std( i);
15size(i0);
16degree(i0);
17option(nofastHC,returnSB);
18i0=std( i);
19size(i0);
20degree(i0);
21option(morePairs);
22i0=std( i);
23size(i0);
24degree(i0);
25option(notSugar);
26i0=std( i);
27size(i0);
28degree(i0);
29option(sugarCrit);
30i0=std( i);
31size(i0);
32degree(i0);
33option(nosugarCrit,nomorePairs);
34i0=std( i);
35size(i0);
36degree(i0);
37i0;
38LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.