source: git/Tst/Short/bug_homog.tst @ ccbdf0

spielwiese
Last change on this file since ccbdf0 was b806aa, checked in by Hans Schönemann <hannes@…>, 17 years ago
*hannes: funny stuff in 3-0-3: fixed errors and default behav. git-svn-id: file:///usr/local/Singular/svn/trunk@10293 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 328 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// homogonizations and variable weights:
5
6ring r=0,(x,y,z),M(2,3,1,1,0,0,0,1,0);
7poly p=x+y+z;
8homog(p,z);
9ring s=0,(x,y,z),wp(2,3,1);
10poly p=x+y+z;
11homog(p,z);
12
13ring rr=0,(x,y,z),M(2,3,4,1,0,0,0,1,0);
14poly p=x+y+z;
15homog(p,z);
16ring ss=0,(x,y,z),wp(2,3,4);
17poly p=x+y+z;
18homog(p,z);
19
20tst_status(1);$
Note: See TracBrowser for help on using the repository browser.