source: git/Tst/Manual/liftstd.tst @ 59f0c2b

spielwiese
Last change on this file since 59f0c2b was 59f0c2b, checked in by Fabian Zickgraf <f.zickgraf@…>, 5 years ago
Fix liftstd with four arguments
  • Property mode set to 100644
File size: 316 bytes
Line 
1LIB "tst.lib"; tst_init();
2  ring R=0,(x,y,z),dp;
3  poly f=x3+y7+z2+xyz;
4  ideal i=jacob(f);
5  matrix T;
6  ideal sm=liftstd(i,T);
7  sm;
8  print(T);
9  matrix(sm)-matrix(i)*T;
10  module s;
11  sm=liftstd(i,T,s);
12  print(s);
13  sm=liftstd(i,T,s,"std");
14  print(s);
15  sm=liftstd(i,T,s,"slimgb");
16  print(s);
17tst_status(1);$
Note: See TracBrowser for help on using the repository browser.