source: git/Tst/Old/homo.tst @ b35b93

spielwiese
Last change on this file since b35b93 was b35b93, checked in by Olaf Bachmann <obachman@…>, 26 years ago
This commit was generated by cvs2svn to compensate for changes in r1396, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@1397 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 451 bytes
Line 
1//
2// test script for homog command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),(c,ds);
6r1;
7"-------------------------------";
8poly s1=x2y3+45x6y3+68x4z5+80y6x8;
9poly s2=6x5+3y6+8z6;
10poly s3=12xyz3+2y3z6;
11ideal i1=s1,s2,s3;
12homog(s2,z);
13"--------------------------------";
14homog(i1,z);
15"--------------------------------";
16homog(s1,y);
17"--------------------------------";
18homog(i1,x);
19"----------------------------------";
20listvar(all);
21kill r1;
22$;
Note: See TracBrowser for help on using the repository browser.