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

spielwiese
Last change on this file since e706ff was a6382c, checked in by Olaf Bachmann <obachman@…>, 23 years ago
changed tests git-svn-id: file:///usr/local/Singular/svn/trunk@4727 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 551 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(notSugar);
22i0=std( i);
23size(i0);
24degree(i0);
25option(sugarCrit);
26i0=std( i);
27size(i0);
28degree(i0);
29option(nosugarCrit);
30i0=std( i);
31size(i0);
32degree(i0);
33i0;
34LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.