source: git/Tst/Old/degre.tst @ 37cd955

spielwiese
Last change on this file since 37cd955 was 37cd955, checked in by Hans Schoenemann <hannes@…>, 14 years ago
pagelength removed git-svn-id: file:///usr/local/Singular/svn/trunk@13172 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 699 bytes
Line 
1//
2// test script for degree command
3//
4ring r1=32003,(x,y,z),ds;
5"------------------------------";
6poly s1=x11+y12+z13+x8y6+x4y6z8;
7s1;
8ideal i1=jacob(s1);
9ideal i2=std(i1);
10i2;
11degree(i2);
12"------------------------------";
13poly s2=x9+y6+z8+xy4+xz7+yz9+xyz3+xy6z+x5yz;
14s2;
15ideal i3=jacob(s2);
16ideal i4=std(i3);
17i4;
18degree(i4);
19"--------------------------------";
20ideal i5=0,0,0;
21i5;
22degree(i5);
23"-------------------------------";
24ideal i6=1,1,1;
25i6;
26degree(i6);
27"-----------------------------";
28listvar(all);
29kill r1;
30"-----s92a/c-------------------";
31ring r=32003,(t,x,y,z),dp;
32ideal ii=
33t2xyz,tx2yz,t3yz,x3yz;
34ii=std(ii);
35degree(ii);
36LIB "tst.lib";tst_status(1);$
37
38LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.