Changeset e9f4c9 in git
- Timestamp:
- Feb 28, 2006, 1:02:53 PM (17 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- e65be8e4791b3fcf14f73211d2e46ed7c136bb9e
- Parents:
- 3aed2f52758ed2b5d3810ffd15d6208c17828ea4
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/tgb.cc
r3aed2f re9f4c9 5 5 * Computer Algebra System SINGULAR * 6 6 ****************************************/ 7 /* $Id: tgb.cc,v 1.7 6 2006-02-24 12:57:38bricken Exp $ */7 /* $Id: tgb.cc,v 1.77 2006-02-28 12:02:52 bricken Exp $ */ 8 8 /* 9 9 * ABSTRACT: slimgb and F4 implementation … … 39 39 //static const BOOLEAN up_to_radical=TRUE; 40 40 41 staticint slim_nsize(number n, ring r) {41 int slim_nsize(number n, ring r) { 42 42 if (rField_is_Zp(r)){ 43 43 return 1; … … 145 145 146 146 147 int QlogSize New(number n){147 int QlogSize(number n){ 148 148 149 149 if (SR_HDL(n) & SR_INT){ … … 165 165 } 166 166 167 inline int QlogSize(number bigint){ 168 return QlogSizeNew(bigint); 169 } 167 170 168 #ifdef LEN_VAR3 171 169 inline int pSLength(poly p,int l) -
kernel/tgb_internal.h
r3aed2f re9f4c9 5 5 * Computer Algebra System SINGULAR * 6 6 ****************************************/ 7 /* $Id: tgb_internal.h,v 1.3 1 2006-02-24 12:58:19bricken Exp $ */7 /* $Id: tgb_internal.h,v 1.32 2006-02-28 12:02:53 bricken Exp $ */ 8 8 /* 9 9 * ABSTRACT: tgb internal .h file … … 208 208 static poly kBucketGcd(kBucket* b, ring r); 209 209 static void multi_reduction(red_object* los, int & losl, slimgb_alg* c); 210 210 int slim_nsize(number n, ring r); 211 211 sorted_pair_node* quick_pop_pair(slimgb_alg* c); 212 212 sorted_pair_node* top_pair(slimgb_alg* c);
Note: See TracChangeset
for help on using the changeset viewer.