Changeset f73952 in git


Ignore:
Timestamp:
Feb 18, 2015, 12:58:47 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
b2b7b93fd9feb7dac134c740f44be2f2d438b159
Parents:
cf6f96d75841efca4f5590b0cdad3cb0fee3ef37
Message:
renamed Polymake::groebnerFan to Polymake::groabnerFanP
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/polymake.lib

    rcf6f96 rf73952  
    4242  newtonPolytopeLP()  computes the lattice points of the Newton polytope
    4343  normalFanL()         computes the normal fan of a polytope
    44   groebnerFan()       computes the Groebner fan of a polynomial
     44  groebnerFanP()       computes the Groebner fan of a polynomial
    4545
    4646PROCEDURES USING TOPCOM:
     
    436436/////////////////////////////////////////////////////////////////////////////
    437437
    438 proc groebnerFan (poly f)
    439 "USAGE:  groebnerFan(f);  f poly
     438proc groebnerFanP (poly f)
     439"USAGE:  groebnerFanP(f);  f poly
    440440RETURN:  list, the ith entry of L[1] contains information about the ith cone
    441441               in the Groebner fan dual to the ith vertex in the Newton
     
    460460        TU Berlin and Michael Joswig, so it only works if polymake is installed;
    461461        see http://www.math.tu-berlin.de/polymake/
    462 EXAMPLE: example groebnerFan;   shows an example"
     462EXAMPLE: example groebnerFanP;   shows an example"
    463463{
    464464  int i,j;
     
    497497   poly f=y3+x2+xy+2xz+yz+z2+1;
    498498   // the Newton polytope of f is
    499    list gf=groebnerFan(f);
     499   list gf=groebnerFanP(f);
    500500   // the exponent vectors of f are ordered as follows
    501501   gf[4];
Note: See TracChangeset for help on using the changeset viewer.