source: git/Tst/Short/sres_s.tst @ b1ac99

spielwiese
Last change on this file since b1ac99 was b1ac99, checked in by Thomas Siebert <siebert@…>, 26 years ago
*** empty log message *** git-svn-id: file:///usr/local/Singular/svn/trunk@1529 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 442 bytes
Line 
1LIB "tst.lib";
2tst_init();
3//
4// test script for sres command
5//
6pagelength = 10000;
7//option(prot);
8ring r1=32003,(a,b,x,y,z),ls;
9r1;
10"-------------------------";
11ideal i=a2x2+ax2y+x2yz,a2y2+ay2z+y2zb,a2z2+az2b+xz2b,a2b2+axb2+xyb2;
12i;
13ideal i1=std(i);
14i1;
15sres(i1,4,T);
16sres(i1,4);
17"------------------------";
18module m=[x2y,0],[1,x2z3];
19m;
20module m1=std(m);
21m1;
22sres(m1,0,M);
23sres(m1,0);
24"-----------------------";
25listvar(all);
26kill r1;
27$;
Note: See TracBrowser for help on using the repository browser.