source: git/Tst/Short/bug_tr186.tst @ 4e59df4

spielwiese
Last change on this file since 4e59df4 was 12e5d1, checked in by Hans Schönemann <hannes@…>, 14 years ago
*hannes: liftstd git-svn-id: file:///usr/local/Singular/svn/trunk@12264 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 329 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// new: liftstd with 3 args:
5ring r;
6ideal i=x,y,z;
7matrix m;
8module s=[1,2];
9liftstd(i,m,s);
10print(m);
11print(s);
12ring R=0,(x,y,z),dp;
13poly f=x3+y7+z2+xyz;
14ideal i=jacob(f);
15matrix T;
16ideal sm=liftstd(i,T);
17sm;
18print(T);
19matrix(sm)-matrix(i)*T;
20module s;
21sm=liftstd(i,T,s);
22print(s);
23
24tst_status(1);$
Note: See TracBrowser for help on using the repository browser.