Changeset 24788b in git
- Timestamp:
- Mar 9, 2005, 2:40:38 PM (18 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 21395a8767c9676e5336997599464ef881a7416a
- Parents:
- 376fc25312795c01c5b05086537884aa254659f9
- Location:
- kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile.in
r376fc2 r24788b 112 112 prCopy.cc p_Mult_q.cc \ 113 113 pDebug.cc pInline2.cc pInline1.cc pInline0.cc \ 114 pShallowCopyDelete.cc fast_mult.cc 114 pShallowCopyDelete.cc fast_mult.cc digitech.cc 115 115 116 116 # normal C source files -
kernel/fast_mult.cc
r376fc2 r24788b 485 485 for(i=0;i<=n-sum;i++){ 486 486 exp[pos]=i; 487 number new_coef=n_In tDiv(coef,facult[i],r);487 number new_coef=n_Init(1,r);//=n_IntDiv(coef,facult[i],r); 488 488 poly zw_real=NULL; 489 489 MC_iterate(f, n, r, f_len,facult, exp,f_terms,erg_bucket,pos+1,sum+i,new_coef,zw_real,tmp,term_pot); … … 505 505 i=n-sum; 506 506 exp[pos]=i; 507 number new_coef=n_In tDiv(coef,facult[i],r);507 number new_coef=n_Init(1,r);//n_IntDiv(coef,facult[i],r); 508 508 buildTermAndAdd(n,facult,f_terms,exp,f_len,erg_bucket,r, new_coef,zw, tmp,term_pot); 509 509 // n_Delete(& new_coef,r); -
kernel/mod2.h.in
r376fc2 r24788b 6 6 * DO NOT EDIT! 7 7 * 8 * Version: $Id: mod2.h.in,v 1. 1.1.1 2003-10-06 12:15:57 SingularExp $8 * Version: $Id: mod2.h.in,v 1.2 2005-03-09 13:40:38 bricken Exp $ 9 9 *******************************************************************/ 10 10 #ifndef MOD2_H … … 165 165 #else 166 166 /* works around a quirk in gcc in the generation of parser tables */ 167 #define INIT_BUG167 //#define INIT_BUG 168 168 #endif 169 169
Note: See TracChangeset
for help on using the changeset viewer.