Changeset 0f62e9 in git
- Timestamp:
- Mar 24, 2011, 5:49:31 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- af460c80ae1c954134f100cc29ac14a2a6e2487e
- Parents:
- 9122909d6ab681be14ce3862c984c43847657e62
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/resbinomial.lib
r9122909 r0f62e9 18 18 Nonhyp(Coef,expJ,sJ,n,flag,sums); computes the ideal generated by the non hyperbolic generators of expJ 19 19 20 inidata(K,k); verifies input data, a binomial ideal K of k generators21 20 identifyvar(); identifies status of variables 22 data(K,k,n); transforms data on lists of lenght n23 21 Edatalist(Coef,Exp,k,n,flag); gives the E-order of each term in Exp 24 22 EOrdlist(Coef,Exp,k,n,flag); computes the E-order of an ideal (giving in the language of lists) … … 53 51 dividelist(L1,L2); divides two lists component to component 54 52 createlist(L1,L2); creates a list of lists of two elements 55 list0(n); creates a list of zeros of size n56 53 "; 54 // inidata(K,k); verifies input data, a binomial ideal K of k generators 55 // data(K,k,n); transforms data on lists of lenght n 56 // list0(n); creates a list of zeros of size n 57 57 58 58 LIB "general.lib"; … … 65 65 //////////////////////////////////////////////////////////////////////////// 66 66 67 proc inidata(ideal K,int k)67 static proc inidata(ideal K,int k) 68 68 "USAGE: inidata(K,k); K any ideal, k integer (!=0) 69 69 COMPUTE: Verifies the input data … … 169 169 ///////////////////////////////////////////////////////////////////////////////// 170 170 171 proc data(ideal K,int k,int n)171 static proc data(ideal K,int k,int n) 172 172 "USAGE: data(K,k,n); K any ideal, k integer (!=0), n integer (!=0) 173 173 COMPUTE: Construcs a list with the coefficients and exponents of one ideal … … 2799 2799 } 2800 2800 /////////////////////////////////////////////////////// 2801 proc list0(int n)2801 static proc list0(int n) 2802 2802 "USAGE: list0(n); n integer 2803 2803 RETURN: list of n zeros
Note: See TracChangeset
for help on using the changeset viewer.