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

Diff for /OpenXM_contrib2/asir2018/io/pexpr.c between version 1.1 and 1.4

version 1.1, 2018/09/19 05:45:08 version 1.4, 2019/11/12 10:53:23
Line 44 
Line 44 
  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY   * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
  * 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: OpenXM_contrib2/asir2018/io/pexpr.c,v 1.3 2019/10/17 03:03:12 kondoh Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "al.h"  #include "al.h"
Line 123  int printmode = PRINTF_G;
Line 123  int printmode = PRINTF_G;
 #define PRINTFNODENODE printfnodenode  #define PRINTFNODENODE printfnodenode
 #define PRINTFARGS printfargs  #define PRINTFARGS printfargs
   
   #if defined(INTERVAL)
   #define PRINTBF4ITV printbf4itv
   #endif
   
 #include "pexpr_body.c"  #include "pexpr_body.c"
   
 /* spetial functions for file output */  /* spetial functions for file output */
Line 164  void printbf(BF a)
Line 168  void printbf(BF a)
   mpfr_free_str(s);    mpfr_free_str(s);
 }  }
   
   #if defined(INTERVAL)
   void printbf4itv(BF a)
   {
     int dprec;
     char fbuf[BUFSIZ];
     char *s;
     dprec = (a->body->_mpfr_prec)*0.30103;
     if ( !dprec ) dprec = 1;
     dprec += 1;
     sprintf(fbuf,"%%.%dR%c",dprec,(double_output==1)?'f':(double_output==2)?'e':'g');
     mpfr_asprintf(&s,fbuf,a->body);
     TAIL PUTS(s);
     mpfr_free_str(s);
   }
   #endif
   
 void printz(Z n)  void printz(Z n)
 {  {
   mpz_out_str(OUT,10,BDY(n));    if ( hex_output == 1 ) {
       TAIL PUTS("0x");
       mpz_out_str(OUT,16,BDY(n));
     } else
       mpz_out_str(OUT,10,BDY(n));
 }  }
   
 void printmpz(mpz_t z)  void printmpz(mpz_t z)
 {  {
   mpz_out_str(OUT,10,z);    if ( hex_output == 1 ) {
       TAIL PUTS("0x");
       mpz_out_str(OUT,16,z);
     } else
       mpz_out_str(OUT,10,z);
 }  }
   

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

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