source: git/Tst/Old/minbas.tst @ 2efb0e

spielwiese
Last change on this file since 2efb0e 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: 759 bytes
Line 
1//
2// test script for minbase command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),(c,ls);
6r1;
7"-------------------------------";
8ideal i1=x2+xyz,y2-z3y,z3+y5xz;
9ideal i2=maxideal(3)+i1;
10i2;
11minbase(i2);
12"-------------------------------";
13i1;
14minbase(i1);
15"-------------------------------";
16ring r2=0,(x,y,z),(c,ds);
17r2;
18"-------------------------------";
19ideal i3=x4+y4z,y2+xz2,z2+yz2;
20ideal i4=maxideal(2)+i3;
21i4;
22minbase(i4);
23"---------------------------------";
24i3;
25minbase(i3);
26"--------------------------------";
27ring r3=0,(x(1..8)),ds;
28r3;
29"-------------------------------";
30matrix m[4][4]=maxideal(3);
31ideal i5=maxideal(2)+minor(m,2);
32i5;
33minbase(i5);
34"---------------------------------";
35listvar(all);
36kill r1,r2,r3;
37LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.