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

spielwiese
Last change on this file since e706ff 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: 641 bytes
Line 
1//
2// test script for deg command
3//
4ring r1 = 0,(x,y,z),ds;
5r1;
6"--------------------------------";
7ideal i1=x2,y2,z2;
8degree(i1);
9"--------------------------------";
10vector v1=[x4,y2,z8];
11v1;
12deg(v1);
13"----------------------------------";
14ring r2=3,(x,y),wp(2,4);
15r2;
16poly s2=x2-y2;
17s2;
18deg(s2);
19"----------------------------";
20ring r3=3,(x,y),ws(2,4);
21r3;
22poly s3=x2+y2;
23s3;
24deg(s3);
25"------------------------------";
26vector v2=[x3,y];
27v2;
28deg(v2);
29"------------------------------";
30deg(0);
31"-----------------------------";
32poly s4=0;
33s4;
34deg(s4);
35"--------------------------------";
36listvar(all);
37kill r1;
38LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.