source: git/Tst/Old/qrin.tst @ 6a9e46

fieker-DuValspielwiese
Last change on this file since 6a9e46 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: 510 bytes
Line 
1//
2// test script for qring command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),dp;
6r1;
7"------------------------------";
8poly s4=x;
9poly s5=y;
10poly s6=z;
11ideal i1=s4,s5,s6;
12ideal j1=std(i1);
13j1;
14qring q1=j1;
15basering;
16"----------------------------";
17ring r2=32003,(x,y,z),ds;
18poly s1=x3y4+123x7y+34x2yz6+23y6z4;
19poly s2=34x8y6z4+9z9;
20poly s3=9xz7+89xy7z8;
21ideal i2=s1,s2,s3;
22ideal j2=std(i2);
23j2;
24qring q2=j2;
25basering;
26"----------------------------";
27listvar(all);
28kill r1;
29LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.