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

spielwiese
Last change on this file since 85d15b1 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: 488 bytes
Line 
1  ring r=32003,(x,y,z),(c,dp);
2  jet(1+x+x2+x3+x4,3);
3  poly f=1+x+y+z+x2+xy+xz+y2+x3+y3+z4;
4  jet(f,3);
5  intvec iv=2,1,1;
6  jet(f,3,iv);
7  // the part of f with (total) degree >3:
8  f-jet(f,3);
9  // the homogeneous part of f of degree 2:
10  jet(f,2)-jet(f,1);
11  // the absolute term of f:
12  jet(f,0);
13  // now for other types:
14  ideal i=f,x,f*f;
15  jet(i,2);
16  vector v=[f,1,x];
17  jet(v,1);
18  jet(v,0);
19  v=[f,1,0];
20  module m=v,v,[1,x2,z3,0,1];
21  jet(m,2);
22LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.