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

Diff for /OpenXM_contrib2/asir2000/engine/cplx.c between version 1.3 and 1.4

version 1.3, 2000/08/22 05:04:05 version 1.4, 2000/12/22 10:03:28
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/cplx.c,v 1.2 2000/08/21 08:31:27 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/engine/cplx.c,v 1.3 2000/08/22 05:04:05 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "base.h"  #include "base.h"
Line 63  Num *rp,*ip;
Line 63  Num *rp,*ip;
 {  {
         if ( !a )          if ( !a )
                 *rp = *ip = 0;                  *rp = *ip = 0;
   #if defined(INTERVAL)
           else if ( NID(a) <= N_PRE_C ) {
   #else
         else if ( NID(a) <= N_B ) {          else if ( NID(a) <= N_B ) {
   #endif
                 *rp = a; *ip = 0;                  *rp = a; *ip = 0;
         } else {          } else {
                 *rp = ((C)a)->r; *ip = ((C)a)->i;                  *rp = ((C)a)->r; *ip = ((C)a)->i;
Line 93  Num *c;
Line 97  Num *c;
                 *c = b;                  *c = b;
         else if ( !b )          else if ( !b )
                 *c = a;                  *c = a;
   #if defined(INTERVAL)
           else if ( (NID(a) <= N_PRE_C) && (NID(b) <= N_PRE_C ) )
   #else
         else if ( (NID(a) <= N_B) && (NID(b) <= N_B ) )          else if ( (NID(a) <= N_B) && (NID(b) <= N_B ) )
   #endif
                 addnum(0,a,b,c);                  addnum(0,a,b,c);
         else {          else {
                 toreim(a,&ar,&ai); toreim(b,&br,&bi);                  toreim(a,&ar,&ai); toreim(b,&br,&bi);
Line 112  Num *c;
Line 120  Num *c;
                 chsgnnum(b,c);                  chsgnnum(b,c);
         else if ( !b )          else if ( !b )
                 *c = a;                  *c = a;
   #if defined(INTERVAL)
           else if ( (NID(a) <= N_PRE_C) && (NID(b) <= N_PRE_C ) )
   #else
         else if ( (NID(a) <= N_B) && (NID(b) <= N_B ) )          else if ( (NID(a) <= N_B) && (NID(b) <= N_B ) )
   #endif
                 subnum(0,a,b,c);                  subnum(0,a,b,c);
         else {          else {
                 toreim(a,&ar,&ai); toreim(b,&br,&bi);                  toreim(a,&ar,&ai); toreim(b,&br,&bi);
Line 129  Num *c;
Line 141  Num *c;
   
         if ( !a || !b )          if ( !a || !b )
                 *c = 0;                  *c = 0;
   #if defined(INTERVAL)
           else if ( (NID(a) <= N_PRE_C) && (NID(b) <= N_PRE_C ) )
   #else
         else if ( (NID(a) <= N_B) && (NID(b) <= N_B ) )          else if ( (NID(a) <= N_B) && (NID(b) <= N_B ) )
   #endif
                 mulnum(0,a,b,c);                  mulnum(0,a,b,c);
         else {          else {
                 toreim(a,&ar,&ai); toreim(b,&br,&bi);                  toreim(a,&ar,&ai); toreim(b,&br,&bi);
Line 149  Num *c;
Line 165  Num *c;
                 error("divcplx : division by 0");                  error("divcplx : division by 0");
         else if ( !a )          else if ( !a )
                 *c = 0;                  *c = 0;
   #if defined(INTERVAL)
           else if ( (NID(a) <= N_PRE_C) && (NID(b) <= N_PRE_C ) )
   #else
         else if ( (NID(a) <= N_B) && (NID(b) <= N_B ) )          else if ( (NID(a) <= N_B) && (NID(b) <= N_B ) )
   #endif
                 divnum(0,a,b,c);                  divnum(0,a,b,c);
         else {          else {
                 toreim(a,&ar,&ai); toreim(b,&br,&bi);                  toreim(a,&ar,&ai); toreim(b,&br,&bi);
Line 221  Num a,*c;
Line 241  Num a,*c;
   
         if ( !a )          if ( !a )
                 *c = 0;                  *c = 0;
   #if defined(INTERVAL)
           else if ( NID(a) <= N_PRE_C )
   #else
         else if ( NID(a) <= N_B )          else if ( NID(a) <= N_B )
   #endif
                 chsgnnum(a,c);                  chsgnnum(a,c);
         else {          else {
                 chsgnnum(((C)a)->r,&r); chsgnnum(((C)a)->i,&i);                  chsgnnum(((C)a)->r,&r); chsgnnum(((C)a)->i,&i);
Line 236  Num a,b;
Line 260  Num a,b;
         int s;          int s;
   
         if ( !a ) {          if ( !a ) {
   #if defined(INTERVAL)
                   if ( !b || (NID(b)<=N_PRE_C) )
   #else
                 if ( !b || (NID(b)<=N_B) )                  if ( !b || (NID(b)<=N_B) )
   #endif
                         return compnum(0,a,b);                          return compnum(0,a,b);
                 else                  else
                         return -1;                          return -1;
         } else if ( !b ) {          } else if ( !b ) {
   #if defined(INTERVAL)
                   if ( !a || (NID(a)<=N_PRE_C) )
   #else
                 if ( !a || (NID(a)<=N_B) )                  if ( !a || (NID(a)<=N_B) )
   #endif
                         return compnum(0,a,b);                          return compnum(0,a,b);
                 else                  else
                         return 1;                          return 1;

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

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