source: git/Tst/Old/corner.tst

spielwiese
Last change on this file was 4689d0, checked in by Hans Schoenemann <hannes@…>, 3 years ago
rename poly.lib to polylib.lib
  • Property mode set to 100644
File size: 556 bytes
Line 
1//
2// test script for maxdeg command
3//
4LIB"polylib.lib";
5ring r1 = 32003,(x,y,z),(c,ds);
6option(prot);
7r1;
8"-------------------------------";
9poly s1=x3y2+21328x5y+10667x2y4+21328x2yz3+10666xy6+10667y9;
10poly s2=x2y2z2+3z8;
11poly s3=5x4y2+4xy5+2x2y2z3+y7+11x10;
12ideal i1=s1,s2,s3;
13test(27);
14ideal i2=std(i1);
15maxdeg(i2);
16"--------------------------------";
17poly s4=x6+y6+z6;
18poly s5=xy5+z7+xz8;
19poly s6=yz8+x4y4+x8z8;
20ideal i3=s4,s5,s6;
21ideal i4=std(i3);
22maxdeg(i4);
23"--------------------------------";
24listvar(all);
25kill r1;
26LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.