Changeset b154b3 in git
- Timestamp:
- Feb 22, 2008, 3:17:21 PM (15 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- 819c730631b3f8cdcc346354cd8473eb0a23956a
- Parents:
- 9667879f6c3f848cdfbb5c6c0e9a14ea6e130e81
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/resolve.lib
r966787 rb154b3 1 1 /////////////////////////////////////////////////////////////////////////////// 2 version="$Id: resolve.lib,v 1. 9 2006-12-08 09:37:33Singular Exp $";2 version="$Id: resolve.lib,v 1.10 2008-02-22 14:17:21 Singular Exp $"; 3 3 category="Commutative Algebra"; 4 4 info=" … … 3109 3109 //---------------------------------------------------------------------------- 3110 3110 int i,ch; 3111 ch=char(basering); 3112 int e=int(factorial(b,ch)); 3111 int e=int(factorial(b)); 3113 3112 ideal C; 3114 3113 list L=DeltaList(BO); … … 3502 3501 int i; 3503 3502 int mon=1; 3504 int ch=char(basering);3505 3503 for(i=1;i<=size(I);i++) 3506 3504 { … … 3513 3511 if((mon)&&(size(I)>3)) 3514 3512 { 3515 int e=int(factorial(n ,ch))/m;3513 int e=int(factorial(n))/m; 3516 3514 ideal J=1; 3517 3515 poly p=I[1]; … … 3562 3560 // Initialization and sanity checks 3563 3561 //--------------------------------------------------------------------------- 3564 int ch=char(basering);3565 3562 int i,k,dummy,errtype; 3566 3563 int ma=size(BO[4]); … … 3601 3598 } 3602 3599 if(b>=6){return(0);} // b is too big 3603 int e=int(factorial(b ,ch));// b of Coeff-Ideal3600 int e=int(factorial(b)); // b of Coeff-Ideal 3604 3601 if(e==0) 3605 3602 { 3606 ERROR( "// characteristictoo small for forming b! .");3603 ERROR( "// integer size too small for forming b! ."); 3607 3604 } 3608 3605 if(b==0)
Note: See TracChangeset
for help on using the changeset viewer.