Changeset 5291ef in git


Ignore:
Timestamp:
Jan 12, 2009, 8:31:23 PM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
25778ba7de6c91b5ae55a3041a2fc3eecbb7ffc1
Parents:
f8156d42cf4f4b3f9c0f819859cc06f752914fd5
Message:
*hannes: initialIdeal -> initialIdealW


git-svn-id: file:///usr/local/Singular/svn/trunk@11302 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular/LIB
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/bfct.lib

    rf8156d4 r5291ef  
    11//////////////////////////////////////////////////////////////////////////////
    2 version="$Id: bfct.lib,v 1.9 2009-01-07 16:11:35 Singular Exp $";
     2version="$Id: bfct.lib,v 1.10 2009-01-12 19:31:23 Singular Exp $";
    33category="Noncommutative";
    44info="
     
    4545LIB "qhmoduli.lib"; // for Max
    4646LIB "dmod.lib";     // for SannfsBFCT etc
    47 LIB "dmodapp.lib";  // for initialIdeal etc
     47LIB "dmodapp.lib";  // for initialIdealW etc
    4848
    4949
     
    13461346    }
    13471347  }
    1348   ideal J = initialIdeal(I,-w,w,whichengine,methodord);
     1348  ideal J = initialIdealW(I,-w,w,whichengine,methodord);
    13491349  poly s;
    13501350  for (i=1; i<=n; i++)
  • Singular/LIB/dmodapp.lib

    rf8156d4 r5291ef  
    11//////////////////////////////////////////////////////////////////////////////
    2 version="$Id: dmodapp.lib,v 1.14 2009-01-07 16:11:35 Singular Exp $";
     2version="$Id: dmodapp.lib,v 1.15 2009-01-12 19:31:23 Singular Exp $";
    33category="Noncommutative";
    44info="
     
    1818rational function G/F from Quot(R). These can be computed via annPoly resp. annRat.
    1919
    20 @* - initial form and initial ideals in Weyl algebras with respect to a given weight vector can be computed with the help of inForm, initialMalgrange, initialIdeal.
     20@* - initial form and initial ideals in Weyl algebras with respect to a given weight vector can be computed with the help of inForm, initialMalgrange, initialIdealW.
    2121
    2222@* - appelF1, appelF2 and appelF4 return ideals in parametric Weyl algebra, which
     
    3333
    3434initialMalgrange(f[,s,t,u,v]); Groebner basis of the initial Malgrange ideal for a given poly
    35 initialIdeal(I,u,v[,s,t]); initial ideal of a given ideal w.r.t. given weights
     35initialIdealW(I,u,v[,s,t]); initial ideal of a given ideal w.r.t. given weights
    3636inForm(f,w);     initial form of a poly/ideal w.r.t. a given weight
    3737isFsat(I, F);       check whether the ideal I is F-saturated
     
    6767proc testdmodapp()
    6868{
    69   example initialIdeal;
     69  example initialIdealW;
    7070  example initialMalgrange;
    7171  example DLoc;
     
    8686
    8787
    88 proc initialIdeal (ideal I, intvec u, intvec v, list #)
    89 "USAGE:  initialIdeal(I,u,v [,s,t]);  I ideal, u,v intvecs, s,t optional ints
     88proc initialIdealW (ideal I, intvec u, intvec v, list #)
     89"USAGE:  initialIdealW(I,u,v [,s,t]);  I ideal, u,v intvecs, s,t optional ints
    9090RETURN:  ideal, GB of initial ideal of the input ideal wrt the weights u and v
    9191PURPOSE: computes the initial ideal
     
    102102DISPLAY: If printlevel=1, progress debug messages will be printed,
    103103@*       if printlevel>=2, all the debug messages will be printed.
    104 EXAMPLE: example initialIdeal; shows examples
     104EXAMPLE: example initialIdealW; shows examples
    105105"
    106106{
     
    136136  intvec u = -1; intvec v = 2;
    137137  ideal I = x^2*Dx^2,x*Dx^4;
    138   ideal J = initialIdeal(I,u,v); J;
     138  ideal J = initialIdealW(I,u,v); J;
    139139}
    140140
Note: See TracChangeset for help on using the changeset viewer.