Changeset b154b3 in git


Ignore:
Timestamp:
Feb 22, 2008, 3:17:21 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
Children:
819c730631b3f8cdcc346354cd8473eb0a23956a
Parents:
9667879f6c3f848cdfbb5c6c0e9a14ea6e130e81
Message:
hannes: factorial -> bigint


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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/resolve.lib

    r966787 rb154b3  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: resolve.lib,v 1.9 2006-12-08 09:37:33 Singular Exp $";
     2version="$Id: resolve.lib,v 1.10 2008-02-22 14:17:21 Singular Exp $";
    33category="Commutative Algebra";
    44info="
     
    31093109//----------------------------------------------------------------------------
    31103110   int i,ch;
    3111    ch=char(basering);
    3112    int e=int(factorial(b,ch));
     3111   int e=int(factorial(b));
    31133112   ideal C;
    31143113   list L=DeltaList(BO);
     
    35023501   int i;
    35033502   int mon=1;
    3504    int ch=char(basering);
    35053503   for(i=1;i<=size(I);i++)
    35063504   {
     
    35133511   if((mon)&&(size(I)>3))
    35143512   {
    3515       int e=int(factorial(n,ch))/m;
     3513      int e=int(factorial(n))/m;
    35163514      ideal J=1;
    35173515      poly p=I[1];
     
    35623560// Initialization  and sanity checks
    35633561//---------------------------------------------------------------------------
    3564    int ch=char(basering);
    35653562   int i,k,dummy,errtype;
    35663563   int ma=size(BO[4]);
     
    36013598   }
    36023599   if(b>=6){return(0);}              // b is too big
    3603    int e=int(factorial(b,ch));       // b of Coeff-Ideal
     3600   int e=int(factorial(b));          // b of Coeff-Ideal
    36043601   if(e==0)
    36053602   {
    3606      ERROR( "// characteristic too small for forming b! .");
     3603     ERROR( "// integer size too small for forming b! .");
    36073604   }
    36083605   if(b==0)
Note: See TracChangeset for help on using the changeset viewer.