source: git/Tst/Old/lif.tst @ 85d15b1

spielwiese
Last change on this file since 85d15b1 was 37cd955, checked in by Hans Schoenemann <hannes@…>, 14 years ago
pagelength removed git-svn-id: file:///usr/local/Singular/svn/trunk@13172 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 507 bytes
Line 
1//
2// test script for lift command
3//
4ring r1 = 32003,(x,y,z),(c,dp);
5r1;
6"-------------------------------";
7poly s1=y7+x3+xyz+z2;
8ideal i1=jacob(s1);
9ideal i2=std(i1);
10ideal i=3x2+yz,7y6+2x2y+5xz;
11i;
12i1;
13i2;
14s1;
15matrix T=lift(i2,i);
16T;
17matrix(i)-matrix(i2)*T;
18"-----------------------------";
19poly s2=x4+y3+z6+2xyz;
20ideal i3=jacob(s2);
21ideal i4=std(i3);
22s2;
23i3;
24i4;
25matrix T1=lift(i4,i);
26T1;
27matrix(i)-matrix(i4)*T1;
28"-------------------------------";
29listvar(all);
30kill r1;
31LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.