Changeset 24788b in git


Ignore:
Timestamp:
Mar 9, 2005, 2:40:38 PM (18 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
21395a8767c9676e5336997599464ef881a7416a
Parents:
376fc25312795c01c5b05086537884aa254659f9
Message:
digitech.h


git-svn-id: file:///usr/local/Singular/svn/trunk@7774 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
kernel
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/Makefile.in

    r376fc2 r24788b  
    112112    prCopy.cc p_Mult_q.cc \
    113113    pDebug.cc pInline2.cc pInline1.cc pInline0.cc \
    114     pShallowCopyDelete.cc fast_mult.cc
     114    pShallowCopyDelete.cc fast_mult.cc digitech.cc
    115115
    116116# normal C source files
  • kernel/fast_mult.cc

    r376fc2 r24788b  
    485485    for(i=0;i<=n-sum;i++){
    486486      exp[pos]=i;
    487       number new_coef=n_IntDiv(coef,facult[i],r);
     487      number new_coef=n_Init(1,r);//=n_IntDiv(coef,facult[i],r);
    488488      poly zw_real=NULL;
    489489      MC_iterate(f, n, r, f_len,facult, exp,f_terms,erg_bucket,pos+1,sum+i,new_coef,zw_real,tmp,term_pot);
     
    505505    i=n-sum;
    506506    exp[pos]=i;
    507     number new_coef=n_IntDiv(coef,facult[i],r);
     507    number new_coef=n_Init(1,r);//n_IntDiv(coef,facult[i],r);
    508508    buildTermAndAdd(n,facult,f_terms,exp,f_len,erg_bucket,r, new_coef,zw, tmp,term_pot);
    509509    // n_Delete(& new_coef,r);
  • kernel/mod2.h.in

    r376fc2 r24788b  
    66 *          DO NOT EDIT!
    77 *
    8  *  Version: $Id: mod2.h.in,v 1.1.1.1 2003-10-06 12:15:57 Singular Exp $
     8 *  Version: $Id: mod2.h.in,v 1.2 2005-03-09 13:40:38 bricken Exp $
    99 *******************************************************************/
    1010#ifndef MOD2_H
     
    165165#else
    166166/* works around a quirk in gcc in the generation of parser tables */
    167 #define INIT_BUG
     167//#define INIT_BUG
    168168#endif
    169169
Note: See TracChangeset for help on using the changeset viewer.