[BACK]Return to up_lm.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / engine

Diff for /OpenXM_contrib2/asir2000/engine/up_lm.c between version 1.9 and 1.10

version 1.9, 2015/08/06 10:01:52 version 1.10, 2015/08/08 14:19:41
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/engine/up_lm.c,v 1.8 2012/12/17 07:20:44 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/engine/up_lm.c,v 1.9 2015/08/06 10:01:52 fujimoto Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include <math.h>  #include <math.h>
Line 500  void hybrid_powertabup(UP f,UP xp,UP *tab)
Line 500  void hybrid_powertabup(UP f,UP xp,UP *tab)
         invmodup(t,f->d,&invf);          invmodup(t,f->d,&invf);
   
         for ( i = 2; i < d; i++ ) {          for ( i = 2; i < d; i++ ) {
                 if ( debug_up )            if ( debug_up ){
                         fprintf(stderr,".");              fprintf(stderr,".");
                 hybrid_mulup(FF_GFP,tab[i-1],xp,&t);  #if defined(__MINGW32__) || defined(__MINGW64__)
                 hybrid_rembymulup_special(FF_GFP,t,f,invf,&tab[i]);              fflush(stderr);
   #endif
             }
             hybrid_mulup(FF_GFP,tab[i-1],xp,&t);
             hybrid_rembymulup_special(FF_GFP,t,f,invf,&tab[i]);
         }          }
 }  }
   
Line 523  void powertabup(UP f,UP xp,UP *tab)
Line 527  void powertabup(UP f,UP xp,UP *tab)
         invmodup(t,f->d,&invf);          invmodup(t,f->d,&invf);
   
         for ( i = 2; i < d; i++ ) {          for ( i = 2; i < d; i++ ) {
                 if ( debug_up )            if ( debug_up ){
                         fprintf(stderr,".");              fprintf(stderr,".");
                 kmulup(tab[i-1],xp,&t);  #if defined(__MINGW32__) || defined(__MINGW64__)
                 rembymulup_special(t,f,invf,&tab[i]);              fflush(stderr);
   #endif
             }
             kmulup(tab[i-1],xp,&t);
             rembymulup_special(t,f,invf,&tab[i]);
         }          }
 }  }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>