source: git/Tst/Old/sre.tst @ b35b93

spielwiese
Last change on this file since b35b93 was b35b93, checked in by Olaf Bachmann <obachman@…>, 26 years ago
This commit was generated by cvs2svn to compensate for changes in r1396, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@1397 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 413 bytes
Line 
1//
2// test script for sres command
3//
4pagelength = 10000;
5option(prot);
6ring r1=32003,(a,b,x,y,z),ls;
7r1;
8"-------------------------";
9ideal i=a2x2+ax2y+x2yz,a2y2+ay2z+y2zb,a2z2+az2b+xz2b,a2b2+axb2+xyb2;
10i;
11ideal i1=std(i);
12i1;
13sres(i1,4,T);
14sres(i1,4);
15"------------------------";
16module m=[x2y,0],[1,x2z3];
17m;
18module m1=std(m);
19m1;
20sres(m1,0,M);
21sres(m1,0);
22"-----------------------";
23listvar(all);
24kill r1;
25$;
Note: See TracBrowser for help on using the repository browser.