source: git/Tst/Long/minor_l.tst @ 96badc

spielwiese
Last change on this file since 96badc 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: 430 bytes
Line 
1LIB "tst.lib";
2tst_init();
3ring r=32003,(x(1..80)),ls;
4matrix A[9][7]=maxideal(1);
5timer=1;
6ideal i=minor(A,4);
7size(i);
8kill r;
9ring r1=32003,(x,y,z,v,w),dp;
10ideal j=vx+xyzw,vxy+yzw,vyz+zwx,vzw+wxy;
11matrix A=jacob(j);
12ideal i=minor(A,3);
13i;
14kill r1;
15ring r=32003,(x,y,z,v,w),dp;
16ideal j=v2x2+xyz2w,vx2y+y2z2w,v2yz+z2w2x,v2zw+wx2y2;
17matrix A=jacob(j);
18ideal i=minor(A,3);
19i;
20ideal B[1][1];
21minor(B,1);
22minor(B,2);
23tst_status(1);$
Note: See TracBrowser for help on using the repository browser.