source: git/Tst/Old/order.tst @ 882ae9c

spielwiese
Last change on this file since 882ae9c 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: 555 bytes
Line 
1//
2// test script for ord command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),wp(2,3,2);
6r1;
7poly s1=x2+y2+z2;
8s1;
9ord(s1);
10"--------------------------------";
11ring r2=23,(x,y,z),ws(2,3,2);
12r2;
13poly s1=x2+y2+z2;
14s1;
15ord(s1);
16"-------------------------------";
17ring r3=0,(x,y,z(1..18)),ws(4,2,3,4,5,2,3,1,5,3,2,2,2,3,3,3,4,5,3,1);
18r3;
19poly s2=x2+y2+z(1)^8+z(12)^18;
20s2;
21ord(s2);
22"------------------------------";
23vector v=[x3,y2,z(15)^2,z(2)^2];
24v;
25ord(v);
26"--------------------------------";
27listvar(all);
28kill r1,r2,r3;
29LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.