spielwiese
Last change
on this file since d7d8ab3 was
d7d8ab3,
checked in by Hans Schönemann <hannes@…>, 24 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 | |
---|
3 | ring r3=32003,(x,y,z),ds; |
---|
4 | int a =11; |
---|
5 | int b =10; |
---|
6 | int c =3; |
---|
7 | int t =1; |
---|
8 | poly 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; |
---|
9 | ideal i= jacob(f); |
---|
10 | ideal i0=std( i); |
---|
11 | size(i0); |
---|
12 | degree(i0); |
---|
13 | option(fastHC); |
---|
14 | i0=std( i); |
---|
15 | size(i0); |
---|
16 | degree(i0); |
---|
17 | option(nofastHC,returnSB); |
---|
18 | i0=std( i); |
---|
19 | size(i0); |
---|
20 | degree(i0); |
---|
21 | option(morePairs); |
---|
22 | i0=std( i); |
---|
23 | size(i0); |
---|
24 | degree(i0); |
---|
25 | option(notSugar); |
---|
26 | i0=std( i); |
---|
27 | size(i0); |
---|
28 | degree(i0); |
---|
29 | option(sugarCrit); |
---|
30 | i0=std( i); |
---|
31 | size(i0); |
---|
32 | degree(i0); |
---|
33 | option(nosugarCrit,nomorePairs); |
---|
34 | i0=std( i); |
---|
35 | size(i0); |
---|
36 | degree(i0); |
---|
37 | i0; |
---|
38 | LIB "tst.lib";tst_status(1);$ |
---|
Note: See
TracBrowser
for help on using the repository browser.