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

Diff for /OpenXM_contrib2/asir2000/engine/real.c between version 1.4 and 1.7

version 1.4, 2000/08/22 05:04:06 version 1.7, 2001/10/09 01:36:13
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/real.c,v 1.3 2000/08/21 08:31:28 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/engine/real.c,v 1.6 2000/12/05 01:24:52 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "base.h"  #include "base.h"
 #include <math.h>  #include <math.h>
   
 #if defined(THINK_C)  
 double RatnToReal(a)  double RatnToReal(a)
 Q a;  Q a;
 {  {
         double nm,dn,t;          double nm,dn,man;
         int enm,edn;  
         char buf[BUFSIZ];  
   
         nm = NatToReal(NM(a),&enm);  
         if ( INT(a) )  
                 if ( enm >= 1 )  
                         error("RatnToReal : Overflow");  
                 else  
                         return SGN(a)>0 ? nm : -nm;  
         else {  
                 dn = NatToReal(DN(a),&edn);  
                 sprintf(buf,"1.0E%d",enm-edn);  
                 sscanf(buf,"%lf",&t);  
                 if ( SGN(a) < 0 )  
                         t = -t;  
                 return nm/dn*t;  
         }  
 }  
   
 double NatToReal(a,expo)  
 N a;  
 int *expo;  
 {  
         int *p;  
         int l,all,i,j,s,tb,top,tail;  
         unsigned int t,m[2];  
   
         p = BD(a); l = PL(a) - 1;  
         for ( top = 0, t = p[l]; t; t >>= 1, top++ );  
         all = top + BSH*l; tail = (53-top)%BSH; i = l-(53-top)/BSH-1;  
         m[1] = i < 0 ? 0 : p[i]>>(BSH-tail);  
         for ( j = 1, i++, tb = tail; i <= l; i++ ) {  
                 s = 32-tb; t = i < 0 ? 0 : p[i];  
                 if ( BSH > s ) {  
                         m[j] |= ((t&((1<<s)-1))<<tb);  
                         if ( !j )  
                                 break;  
                         else {  
                                 j--; m[j] = t>>s; tb = BSH-s;  
                         }  
                 } else {  
                         m[j] |= (t<<tb); tb += BSH;  
                 }  
         }  
         s = (all-1)+1023;  
         m[0] = (m[0]&((1<<20)-1))|(MIN(2046,s)<<20); *expo = MAX(s-2046,0);  
 #ifdef vax  
         t = m[0]; m[0] = m[1]; m[1] = t; itod(m);  
 #endif  
 #if defined(MIPSEL)  
         t = m[0]; m[0] = m[1]; m[1] = t;  
 #endif  
         return (double)(*((short double *)m));  
 }  
 #else  
 double RatnToReal(a)  
 Q a;  
 {  
         double nm,dn,t,man;  
         int enm,edn,e;          int enm,edn,e;
         unsigned int *p,s;  
   
         nm = NatToReal(NM(a),&enm);          nm = NatToReal(NM(a),&enm);
         if ( INT(a) )          if ( INT(a) )
                 if ( enm >= 1 )                  if ( enm >= 1 ) {
                         error("RatnToReal : Overflow");                          error("RatnToReal : Overflow");
                 else                          /* NOTREACHED */
                           return 0;
                   } else
                         return SGN(a)>0 ? nm : -nm;                          return SGN(a)>0 ? nm : -nm;
         else {          else {
                 dn = NatToReal(DN(a),&edn);                  dn = NatToReal(DN(a),&edn);
                 man = nm/dn;                  man = nm/dn;
                 if ( SGN(a) < 0 )                  if ( SGN(a) < 0 )
                         man = -man;                          man = -man;
                 if ( ((e = enm - edn) >= 1024) || (e <= -1023) )                  if ( ((e = enm - edn) >= 1024) || (e <= -1023) ) {
                         error("RatnToReal : Overflow"); /* XXX */                          error("RatnToReal : Overflow"); /* XXX */
                 else if ( !e )                          /* NOTREACHED */
                           return 0;
                   } else if ( !e )
                         return man;                          return man;
                 else                  else
                         return man*pow(2,e);                          return man*pow(2,e);
Line 173  int *expo;
Line 116  int *expo;
 #endif  #endif
         return *((double *)m);          return *((double *)m);
 }  }
 #endif  
   
 void addreal(a,b,c)  void addreal(a,b,c)
 Num a,b;  Num a,b;
Line 203  Real *c;
Line 145  Real *c;
                 *c = 0;                  *c = 0;
         else {          else {
                 t = ToReal(a)*ToReal(b);                  t = ToReal(a)*ToReal(b);
   #if 0
                 if ( !t )                  if ( !t )
                         error("mulreal : Underflow"); /* XXX */                          error("mulreal : Underflow"); /* XXX */
                 else                  else
   #endif
                         MKReal(t,*c);                          MKReal(t,*c);
         }          }
 }  }
Line 220  Real *c;
Line 164  Real *c;
                 *c = 0;                  *c = 0;
         else {          else {
                 t = ToReal(a)/ToReal(b);                  t = ToReal(a)/ToReal(b);
   #if 0
                 if ( !t )                  if ( !t )
                         error("divreal : Underflow"); /* XXX */                          error("divreal : Underflow"); /* XXX */
                 else                  else
   #endif
                         MKReal(t,*c);                          MKReal(t,*c);
         }          }
 }  }
Line 255  Real *c;
Line 201  Real *c;
                 *c = 0;                  *c = 0;
         else if ( !RATN(b) || !INT(b) || (PL(NM((Q)b)) > 1) ) {          else if ( !RATN(b) || !INT(b) || (PL(NM((Q)b)) > 1) ) {
                 t = (double)pow((double)ToReal(a),(double)ToReal(b));                  t = (double)pow((double)ToReal(a),(double)ToReal(b));
   #if 0
                 if ( !t )                  if ( !t )
                         error("pwrreal : Underflow"); /* XXX */                          error("pwrreal : Underflow"); /* XXX */
                 else                  else
   #endif
                         MKReal(t,*c);                          MKReal(t,*c);
         } else {          } else {
                 t = pwrreal0(BDY((Real)a),BD(NM((Q)b))[0]);                  t = pwrreal0(BDY((Real)a),BD(NM((Q)b))[0]);
                 t = SGN((Q)b)>0?t:1/t;                  t = SGN((Q)b)>0?t:1/t;
   #if 0
                 if ( !t )                  if ( !t )
                         error("pwrreal : Underflow"); /* XXX */                          error("pwrreal : Underflow"); /* XXX */
                 else                  else
   #endif
                         MKReal(t,*c);                          MKReal(t,*c);
         }          }
 }  }

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.7

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