Changeset 1dd66f in git


Ignore:
Timestamp:
Jun 19, 1998, 6:13:38 PM (26 years ago)
Author:
Christian Gorze <gorzel@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
904317a377cff8d8fcedebd9e593ae71f5270bba
Parents:
96d556df366fc882c587e88f3afe97fd3886b570
Message:
new graphics.tst


git-svn-id: file:///usr/local/Singular/svn/trunk@2227 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Tst/Short/graphics.tst

    r96d556d r1dd66f  
    33
    44tst_init();
    5 tst_ignore("CVS ID $Id: graphics.tst,v 1.1 1998-05-17 17:38:17 obachman Exp $");
     5tst_ignore("CVS ID $Id: graphics.tst,v 1.2 1998-06-19 16:13:38 gorzel Exp $");
    66 
    77 // test staircase
     
    99  ring r0 = 0,(x,y),ls;
    1010  ideal I = -1x2y6-1x4y2, 7x6y5+1/2x7y4+6x4y6;
    11   staircase(std(I));
     11  staircase("",std(I));
    1212  ring r1 = 0,(x,y),dp;
    1313  ideal I = fetch(r0,I);
    14   staircase(std(I));
     14  staircase("",std(I));
    1515  ring r2 = 0,(x,y),wp(2,3);
    1616  ideal I = fetch(r0,I);
    17   staircase(std(I));
     17  staircase("",std(I));
    1818
    1919 // test math.init
     
    2424   ideal I = x1^3 + x1, x1^2;
    2525   ideal J = x1^2,-x1+x1^3; "";
    26    plot(J);
    27    plot(I,"-2,2",J);
     26   plot("",J);
     27   plot("",I,"-2,2",J);
    2828
    2929   ring rr1 = 0,x,dp; 
    3030   ideal I(1) = 2x2-1/2x3 +1, x-1;
    3131   ideal I(2) = x3-x ,x;
    32    plot(I(1),I(2),"-2,4");
     32   plot("",I(1),I(2),"-2,4");
    3333   I(1) = x3,-1/10x3+x2,x2;
    3434   I(2) = x2,-x2+2,-2x2-x+1;
    35    plot(I(1),I(2));
     35   plot("",I(1),I(2));
    3636   
    3737   ring rr = 0,(x,y),ds;
     
    4040   ideal I(3) = x4+2x2y2 + y4, x2-y2; 
    4141   poly f = (x-y)*(x2+y);
    42    plot(f);
     42   plot("",f);
    4343   ideal J = jacob(f);
    4444   J;
    45    plot(J[1],J[2]); 
    46    plot(J[1],J[2],"-10,10","-10,10"); 
    47    plot(I(1),I(2),"-2.5,2.5");
    48    plot(I(3),"-2,2");
     45   plot("",J[1],J[2]); 
     46   plot("",J[1],J[2],"-10,10","-10,10"); 
     47   plot("",I(1),I(2),"-2.5,2.5");
     48   plot("",I(3),"-2,2");
    4949   ideal J(1) = 3xy4 + 2xy2, x5y3 + x + y6,10x2;
    5050   ideal J(2) = xy,y,x2; "";
    51    plot(J(1),"-2,1","1,2");
    52    plot(J(2),"-1.5,1.5","-2,2");
     51   plot("",J(1),"-2,1","1,2");
     52   plot("",J(2),"-1.5,1.5","-2,2");
    5353 $
    5454
Note: See TracChangeset for help on using the changeset viewer.