source: git/Tst/Old/degre.tst @ 866f78

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