source: git/Tst/Short/deform_s.tst @ 46976a6

spielwiese
Last change on this file since 46976a6 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: 693 bytes
Line 
1//deform_s.tst
2//short tests for deform.lib
3//---------------------------
4LIB "tst.lib";
5tst_init();
6LIB "deform.lib";
7example versal;
8example mod_versal;
9example lift_rel_kb;
10example lift_kbase;
11   printlevel =  2;
12ring  r1  = 0,(x,y,z,u),dp;
13 ideal i3 = xy,xz,xu,yz,yu,zu;       
14 versal(i3);
15 setring Px;
16 listvar(Px);
17 kill_rings();
18ring   Po = 0,(x,y),dp;
19ideal  Io = std(x^4+y^3);
20matrix Mo;
21//============= rk 1 ======================================
22module k =[x],[y];
23module m(0)=k;
24module m(1)=[x,y],[-y2,x3];
25module m(2)=[x3,y],[-y2,x];
26int i';
27for (i'=0;i'<3;i'=i'+1)
28{
29  Mo=m(i');
30  mod_versal(Mo,Io);
31  setring Px;
32  listvar(Px);
33  setring(Po);
34 kill_rings();
35}
36tst_status(1);$
Note: See TracBrowser for help on using the repository browser.