[BACK]Return to isolv.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2018 / builtin

Diff for /OpenXM_contrib2/asir2018/builtin/isolv.c between version 1.2 and 1.3

version 1.2, 2019/06/04 07:11:23 version 1.3, 2019/10/17 03:03:12
Line 1 
Line 1 
 /*  /*
  * $OpenXM: OpenXM_contrib2/asir2018/builtin/isolv.c,v 1.1 2018/09/19 05:45:06 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2018/builtin/isolv.c,v 1.2 2019/06/04 07:11:23 kondoh Exp $
  */   */
   
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
 #include "version.h"  #include "version.h"
   
 #if defined(INTERVAL)  #if defined(INTERVAL)
   
 static void Solve(NODE, Obj *);  static void Solve(NODE, Obj *);
 static void NSolve(NODE, Obj *);  static void NSolve(NODE, Obj *);
Line 43  Obj  *rp;
Line 43  Obj  *rp;
   V       v;    V       v;
   Q       eps;    Q       eps;
   
   
         *rp = 0;
   #if 0
   p = (pointer)ARG0(arg);    p = (pointer)ARG0(arg);
   if ( !p ) {    if ( !p ) {
     *rp = 0;      *rp = 0;
Line 78  Obj  *rp;
Line 81  Obj  *rp;
     default:      default:
       *rp = 0;        *rp = 0;
   }    }
   #endif
 }  }
   
 static void  static void
Line 93  NSolve(NODE arg, Obj *rp)
Line 97  NSolve(NODE arg, Obj *rp)
   Itv    iv;    Itv    iv;
   BF      breal;    BF      breal;
   
         *rp = 0;
   #if 0
   
   p = (pointer)ARG0(arg);    p = (pointer)ARG0(arg);
   if ( !p ) {    if ( !p ) {
     *rp = 0;      *rp = 0;
Line 443  Q *rp;
Line 450  Q *rp;
       *rp = t;        *rp = t;
     }      }
   }    }
   #endif
 }  }
 #endif  #endif

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

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