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

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