Changeset 818958f in git
- Timestamp:
- Feb 15, 2007, 12:13:40 PM (16 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- e4ad0e8e6de45042f972bec1aa6320c24864ca99
- Parents:
- f238523916268f4defd17e161a8279773f4fcf31
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/tgb.cc
rf23852 r818958f 5 5 * Computer Algebra System SINGULAR * 6 6 ****************************************/ 7 /* $Id: tgb.cc,v 1.13 5 2007-02-15 10:57:42bricken Exp $ */7 /* $Id: tgb.cc,v 1.136 2007-02-15 11:13:40 bricken Exp $ */ 8 8 /* 9 9 * ABSTRACT: slimgb and F4 implementation … … 33 33 #define SR_HDL(A) ((long)(A)) 34 34 static const int bundle_size=1000; 35 static const int bundle_size_noro=1000; 35 36 static const int delay_factor=3; 36 37 int QlogSize(number n); … … 2959 2960 c->average_length=c->average_length/c->n; 2960 2961 i=0; 2961 poly* p=(poly*) omalloc((bundle_size+1)*sizeof(poly));//nullterminated 2962 int max_pairs=bundle_size; 2963 if (use_noro) 2964 max_pairs=bundle_size_noro; 2965 poly* p=(poly*) omalloc((max_pairs+1)*sizeof(poly));//nullterminated 2962 2966 2963 2967 int curr_deg=-1; 2964 while(i< bundle_size){2968 while(i<max_pairs){ 2965 2969 sorted_pair_node* s=top_pair(c);//here is actually chain criterium done 2966 2970
Note: See TracChangeset
for help on using the changeset viewer.