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

Diff for /OpenXM_contrib2/asir2000/io/cpexpr.c between version 1.1.1.1 and 1.29

version 1.1.1.1, 1999/12/03 07:39:11 version 1.29, 2018/03/29 01:32:53
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/asir99/io/cpexpr.c,v 1.1.1.1 1999/11/10 08:12:30 noro Exp $ */  /*
    * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
    * All rights reserved.
    *
    * FUJITSU LABORATORIES LIMITED ("FLL") hereby grants you a limited,
    * non-exclusive and royalty-free license to use, copy, modify and
    * redistribute, solely for non-commercial and non-profit purposes, the
    * computer program, "Risa/Asir" ("SOFTWARE"), subject to the terms and
    * conditions of this Agreement. For the avoidance of doubt, you acquire
    * only a limited right to use the SOFTWARE hereunder, and FLL or any
    * third party developer retains all rights, including but not limited to
    * copyrights, in and to the SOFTWARE.
    *
    * (1) FLL does not grant you a license in any way for commercial
    * purposes. You may use the SOFTWARE only for non-commercial and
    * non-profit purposes only, such as academic, research and internal
    * business use.
    * (2) The SOFTWARE is protected by the Copyright Law of Japan and
    * international copyright treaties. If you make copies of the SOFTWARE,
    * with or without modification, as permitted hereunder, you shall affix
    * to all such copies of the SOFTWARE the above copyright notice.
    * (3) An explicit reference to this SOFTWARE and its copyright owner
    * shall be made on your publication or presentation in any form of the
    * results obtained by use of the SOFTWARE.
    * (4) In the event that you modify the SOFTWARE, you shall notify FLL by
    * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
    * for such modification or the source code of the modified part of the
    * SOFTWARE.
    *
    * THE SOFTWARE IS PROVIDED AS IS WITHOUT ANY WARRANTY OF ANY KIND. FLL
    * MAKES ABSOLUTELY NO WARRANTIES, EXPRESSED, IMPLIED OR STATUTORY, AND
    * EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS
    * FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT OF THIRD PARTIES'
    * RIGHTS. NO FLL DEALER, AGENT, EMPLOYEES IS AUTHORIZED TO MAKE ANY
    * MODIFICATIONS, EXTENSIONS, OR ADDITIONS TO THIS WARRANTY.
    * UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, TORT, CONTRACT,
    * OR OTHERWISE, SHALL FLL BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY
    * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL
    * DAMAGES OF ANY CHARACTER, INCLUDING, WITHOUT LIMITATION, DAMAGES
    * ARISING OUT OF OR RELATING TO THE SOFTWARE OR THIS AGREEMENT, DAMAGES
    * FOR LOSS OF GOODWILL, WORK STOPPAGE, OR LOSS OF DATA, OR FOR ANY
    * DAMAGES, EVEN IF FLL SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF
    * SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. EVEN IF A PART
    * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
    * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
    * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
    * $OpenXM: OpenXM_contrib2/asir2000/io/cpexpr.c,v 1.28 2017/08/31 02:36:21 noro Exp $
   */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
   #include "al.h"
 #include "base.h"  #include "base.h"
   
   #ifndef CPRINT
   #define CPRINT
   #endif
   
   extern int hex_output,fortran_output,double_output,real_digit;
   extern int hideargs,outputstyle;
   static int total_length;
   
 #define TAIL  #define TAIL
 #define PUTS(s) (total_length+=strlen(s))  #define PUTS(s) (total_length+=strlen(s))
 #define PRINTN length_n  #define PRINTN length_n
 /* #define PRINTBF length_bf */  #define PRINTBF length_bf
 #define PRINTBF  
 #define PRINTCPLX length_cplx  #define PRINTCPLX length_cplx
   #define PRINTLM length_lm
   #define PRINTUP2 length_up2
 #define PRINTV length_v  #define PRINTV length_v
 #define PRINTEXPR length_expr  #define PRINTEXPR length_expr
 #define PRINTNUM length_num  #define PRINTNUM length_num
Line 20 
Line 77 
 #define PRINTSTR length_str  #define PRINTSTR length_str
 #define PRINTCOMP length_comp  #define PRINTCOMP length_comp
 #define PRINTDP length_dp  #define PRINTDP length_dp
   #define PRINTDPM length_dpm
   #define PRINTUI length_ui
   #define PRINTGF2MAT length_gf2mat
   #define PRINTGFMMAT length_gfmmat
   #define PRINTBYTEARRAY length_bytearray
   #define PRINTQUOTE length_QUOTE
   #define PRINTQUOTEARG length_QUOTEARG
   #define PRINTSYMBOL length_SYMBOL
   #define PRINTRANGE length_RANGE
   #define PRINTTB length_TB
   #define PRINTDPV length_DPV
   #define PRINTNBP length_nbp
   #define PRINTERR length_err
   #define PRINTLF length_lf
   #define PRINTLOP length_lop
   #define PRINTFOP length_fop
   #define PRINTEOP length_eop
   #define PRINTQOP length_qop
   #define PRINTUP length_up
   #define PRINTUM length_um
   #define PRINTSF length_sf
   #define PRINTFARGS length_fargs
   #define PRINTFNODENODE length_fnodenode
   #define PRINTFNODE length_fnode
   
 #if defined(THINK_C)  #include "pexpr_body.c"
 void PRINTEXPR(VL,pointer);  
 void PRINTNUM(Num);  
 void PRINTV(VL,V);  
 void PRINTN(N);  
 void PRINTP(VL,P);  
 void PRINTR(VL,R);  
 void PRINTLIST(VL,LIST);  
 void PRINTVECT(VL,VECT);  
 void PRINTMAT(VL,MAT);  
 void PRINTSTR(STRING);  
 void PRINTCOMP(VL,COMP);  
 void PRINTDP(VL,DP);  
 void PRINTCPLX(C);  
 #else  
 void PRINTEXPR();  
 void PRINTNUM();  
 void PRINTV();  
 void PRINTN();  
 void PRINTP();  
 void PRINTR();  
 void PRINTLIST();  
 void PRINTVECT();  
 void PRINTMAT();  
 void PRINTSTR();  
 void PRINTCOMP();  
 void PRINTDP();  
 void PRINTCPLX();  
 #endif  
   
   /* special functions for estimating length */
   
 static int total_length;  static int total_length;
   
 int estimate_length(vl,p)  int estimate_length(VL vl,pointer p)
 VL vl;  
 pointer p;  
 {  {
         total_length = 0;    total_length = 0;
         PRINTEXPR(vl,p);    PRINTEXPR(vl,p);
         return total_length;    return total_length;
 }  }
   
 void PRINTEXPR(vl,p)  void PRINTBF(BF a)
 VL vl;  
 pointer p;  
 {  {
         if ( !p ) {    char *str;
                 total_length++;    int dprec;
                 return;    char fbuf[BUFSIZ];
         }  
   
         switch ( OID(p) ) {    dprec = a->body->_mpfr_prec*0.30103;
                 case O_N:    sprintf(fbuf,"%%.%dR%c",dprec,double_output?'f':'g');
                         PRINTNUM((Num)p); break;    mpfr_asprintf(&str,fbuf,a->body);
                 case O_P:    total_length += strlen(str);
                         PRINTP(vl,(P)p); break;    mpfr_free_str(str);
                 case O_R:  
                         PRINTR(vl,(R)p); break;  
                 case O_LIST:  
                         PRINTLIST(vl,(LIST)p); break;  
                 case O_VECT:  
                         PRINTVECT(vl,(VECT)p); break;  
                 case O_MAT:  
                         PRINTMAT(vl,(MAT)p); break;  
                 case O_STR:  
                         PRINTSTR((STRING)p); break;  
                 case O_COMP:  
                         PRINTCOMP(vl,(COMP)p); break;  
                 case O_DP:  
                         PRINTDP(vl,(DP)p); break;  
                 default:  
                         break;  
         }  
 }  }
   
 void PRINTN(n)  void PRINTNUM(Num q)
 N n;  
 {  {
         double ceil();    DAlg d;
     DP nm;
     Q dn;
   
         if ( !n )    if ( !q ) {
                 PUTS("0");      PUTS("0");
         else      return;
                 total_length += (int)(ceil(0.31*((double)(BSH*PL(n))))+1);    }
     switch ( NID(q) ) {
       case N_Q:
         if ( SGN((Q)q) == -1 )
           PUTS("-");
         PRINTN(NM((Q)q));
         if ( !INT((Q)q) ) {
           PUTS("/"); PRINTN(DN((Q)q));
         }
         break;
       case N_R:
         if ( double_output )
           total_length += 400+real_digit; /* XXX */
         else
           total_length += 20+real_digit; /* XXX */
         break;
       case N_A:
         PUTS("("); PRINTR(ALG,(R)BDY((Alg)q)); PUTS(")");
         break;
       case N_B:
         PRINTBF((BF)q); break;
       case N_C:
         PRINTCPLX((C)q); break;
       case N_M:
         total_length += 11; /* XXX */
         break;
       case N_LM:
         PRINTN(((LM)q)->body); break;
       case N_GF2N:
         if ( hex_output )
           PRINTN((N)(((GF2N)q)->body));
         else
           PRINTUP2(((GF2N)q)->body);
         break;
       case N_GFPN:
         PRINTUP((UP)(((GFPN)q)->body));
         break;
       case N_GFS:
         total_length += 13; /* XXX */
         break;
       case N_GFSN:
         PRINTUM(BDY((GFSN)q));
         break;
       case N_DA:
         d = (DAlg)q;
         nm = d->nm;
         dn = d->dn;
         if ( SGN((Q)dn) == -1 ) PUTS("-");
         PUTS("(");
         PRINTDP(CO,((DAlg)q)->nm);
         PUTS(")");
         if ( !UNIN(NM(dn)) ) {
           PUTS("/");
           PRINTN(NM(dn));
         }
         break;
       default:
         break;
     }
 }  }
   
 void PRINTNUM(q)  void PRINTV(VL vl,V v)
 Num q;  
 {  {
         if ( !q ) {    PF pf;
                 PUTS("0");    PFAD ad;
                 return;    int i;
         }  
         switch ( NID(q) ) {    if ( NAME(v) )
                 case N_Q:      PUTS(NAME(v));
                         if ( SGN((Q)q) == -1 )    else if ( (vid)v->attr == V_PF ) {
                                 PUTS("-");      pf = ((PFINS)v->priv)->pf; ad = ((PFINS)v->priv)->ad;
                         PRINTN(NM((Q)q));      if ( !strcmp(NAME(pf),"pow") ) {
                         if ( !INT((Q)q) ) {        PUTS("(("); PRINTR(vl,(R)ad[0].arg); PUTS(")"); PRINTHAT; PUTS("(");
                                 PUTS("/"); PRINTN(DN((Q)q));        PRINTR(vl,(R)ad[1].arg); PUTS("))");
                         }      } else if ( !pf->argc )
                         break;        PUTS(NAME(pf));
                 case N_R:      else {
                         total_length += 20; /* XXX */        if ( hideargs ) {
                         break;          for ( i = 0; i < pf->argc; i++ )
                 case N_A:            if ( ad[i].d )
                         PUTS("("); PRINTR(ALG,(R)BDY((Alg)q)); PUTS(")");              break;
                         break;          if ( i < pf->argc ) {
 #if PARI            PUTS(NAME(pf));
                 case N_B:            total_length += 11; /* XXX */
                         PRINTBF((BF)q); break;            for ( i = 1; i < pf->argc; i++ ) {
 #endif              total_length += 11; /* XXX */
                 case N_C:            }
                         PRINTCPLX((C)q); break;            PUTS("}");
                 case N_M:          } else {
                         total_length += 10; /* XXX */            PUTS(NAME(pf));
                         break;            total_length += 1; /* XXX */
         }          }
         } else {
           for ( i = 0; i < pf->argc; i++ )
             if ( ad[i].d )
               break;
           if ( i < pf->argc ) {
             PUTS(NAME(pf));
             total_length += 11; /* XXX */
             for ( i = 1; i < pf->argc; i++ ) {
               total_length += 11; /* XXX */
             }
             PUTS(")(");
           } else {
             PUTS(NAME(pf));
             total_length += 1; /* XXX */
           }
           PRINTR(vl,(R)ad[0].arg);
           for ( i = 1; i < pf->argc; i++ ) {
             PUTS(","); PRINTR(vl,(R)ad[i].arg);
           }
           PUTS(")");
         }
       }
     }
 }  }
   
 void PRINTCPLX(a)  void PRINTN(N n)
 C a;  
 {  {
         PUTS("(");    double ceil();
         if ( a->r )  
                 PRINTNUM(a->r);    if ( !n )
         if ( a->i ) {      PUTS("0");
                 if ( a->r && (compnum(0,a->i,0) > 0) )    else if ( hex_output )
                         PUTS("+");      total_length += 2+(int)(PL(n)*8);
                 PRINTNUM(a->i); PUTS("*@i");    else
         }      total_length += (int)(ceil(0.31*((double)(BSH*PL(n))))+1);
         PUTS(")");  
 }  }
   
 void PRINTP(vl,p)  void PRINTSTR(STRING str)
 VL vl;  
 P p;  
 {  {
         V v;    char *p;
         DCP dc;  
         int t;  
   
         if ( !p )    for ( p = BDY(str); *p; p++ )
                 PUTS("0");      if ( *p == '"' )
         else if ( NUM(p) )        PUTS("\"");
                 PRINTNUM((Num)p);      else {
         else        total_length += 1;
                 for ( dc = DC(p), v = VR(p); dc; dc = NEXT(dc) ) {      }
                         if ( !DEG(dc) )  }
                                 PRINTP(vl,COEF(dc));  
                         else {  
                                 if ( NUM(COEF(dc)) && UNIQ((Q)COEF(dc)) ) {  
                                         ;  
                                 } else if ( NUM(COEF(dc)) && MUNIQ((Q)COEF(dc)) )  
                                         PUTS("-");  
                                 else if ( NUM(COEF(dc)) || !NEXT(DC(COEF(dc)))) {  
                                         PRINTP(vl,COEF(dc)); PUTS("*");  
                                 } else {  
                                         PUTS("("); PRINTP(vl,COEF(dc)); PUTS(")*");  
                                 }  
                                 PRINTV(vl,v);  
                                 if ( cmpq(DEG(dc),ONE) ) {  
                                         PUTS("^");  
                                         if ( INT(DEG(dc)) && SGN(DEG(dc))>0 )  
                                                 PRINTNUM((Num)DEG(dc));  
                                         else {  
                                                 PUTS("("); PRINTNUM((Num)DEG(dc)); PUTS(")");  
                                         }  
                                 }  
                         }  
                         if ( NEXT(dc) ) {  
                                 P t;  
   
                                 t = COEF(NEXT(dc));  void PRINTDP(VL vl,DP d)
                                 if (!DEG(NEXT(dc))) {  {
                                         if ( NUM(t) ) {    int n,i;
                                                 if ( !mmono(t) )    MP m;
                                                         PUTS("+");    DL dl;
                                         } else {  
                                                 if (!mmono(COEF(DC(t))))    for ( n = d->nv, m = BDY(d); m; m = NEXT(m) ) {
                                                         PUTS("+");      PUTS("("); PRINTEXPR(vl,(pointer)m->c); PUTS(")*<<");
                                         }      for ( i = 0, dl = m->dl; i < n-1; i++ ) {
                                 } else {        total_length += 11;
                                         if ( !mmono(t) )      }
                                                 PUTS("+");      total_length += 10;
                                 }      PUTS(">>");
                         }      if ( NEXT(m) )
                 }        PUTS("+");
     }
 }  }
   
 void PRINTV(vl,v)  void PRINTDPM(VL vl,DPM d)
 VL vl;  
 V v;  
 {  {
         PF pf;    int n,i;
         PFAD ad;    DMM m;
         int i;    DL dl;
   
         if ( NAME(v) )    for ( n = d->nv, m = BDY(d); m; m = NEXT(m) ) {
                 PUTS(NAME(v));      PUTS("("); PRINTEXPR(vl,(pointer)m->c); PUTS(")*<<");
         else if ( (vid)v->attr == V_PF ) {      for ( i = 0, dl = m->dl; i < n-1; i++ ) {
                 pf = ((PFINS)v->priv)->pf; ad = ((PFINS)v->priv)->ad;        total_length += 11;
                 if ( !strcmp(NAME(pf),"pow") ) {      }
                         PUTS("("); PRINTR(vl,(R)ad[0].arg); PUTS(")^(");      total_length += 10;
                         PRINTR(vl,(R)ad[1].arg); PUTS(")");      total_length += 11; /* for ':pos' */
                 } else if ( !pf->argc )      PUTS(">>");
                         PUTS(NAME(pf));      if ( NEXT(m) )
                 else {        PUTS("+");
                         for ( i = 0; i < pf->argc; i++ )    }
                                 if ( ad[i].d )  
                                         break;  
                         if ( i < pf->argc ) {  
                                 PUTS(NAME(pf));  
                                 total_length += 11; /* XXX */  
                                 for ( i = 1; i < pf->argc; i++ ) {  
                                         total_length += 11; /* XXX */  
                                 }  
                                 PUTS(")(");  
                         } else {  
                                 PUTS(NAME(pf));  
                                 total_length += 1; /* XXX */  
                         }  
                         PRINTR(vl,(R)ad[0].arg);  
                         for ( i = 1; i < pf->argc; i++ ) {  
                                 PUTS(","); PRINTR(vl,(R)ad[i].arg);  
                         }  
                         PUTS(")");  
                 }  
         }  
 }  }
   
 void PRINTR(vl,a)  
 VL vl;  void PRINTUI(VL vl,USINT u)
 R a;  
 {  {
         if ( !a )    total_length += 10;
                 PUTS("0");  
         else  
                 switch (OID(a)) {  
                         case O_N: case O_P:  
                                 PRINTP(vl,(P)a); break;  
                         default:  
                                 PUTS("("); PRINTP(vl,NM((R)a)); PUTS(")/("); PRINTP(vl,DN((R)a)); PUTS(")");  
                                 break;  
                 }  
 }  }
   
 void PRINTVECT(vl,vect)  void PRINTGFMMAT(VL vl,GFMMAT mat)
 VL vl;  
 VECT vect;  
 {  {
         int i;    int row,col,i,j;
         pointer *ptr;    unsigned int **b;
   
         PUTS("[ ");    row = mat->row;
         for ( i = 0, ptr = BDY(vect); i < vect->len; i++ ) {    col = mat->col;
                 PRINTEXPR(vl,ptr[i]); PUTS(" ");    b = mat->body;
         }    for ( i = 0; i < row; i++ ) {
         PUTS("]");      PUTS("[");
       for ( j = 0; j < col; j++ ) {
         total_length += 10; /* XXX */
       }
       PUTS("]\n");
     }
 }  }
   
 void PRINTMAT(vl,mat)  void PRINTBYTEARRAY(VL vl,BYTEARRAY array)
 VL vl;  
 MAT mat;  
 {  {
         int i,j,r,c;    /* |xx xx ... xx| */
         pointer *ptr;    total_length += 1+3*array->len;
   }
   
         for ( i = 0, r = mat->row, c = mat->col; i < r; i++ ) {  extern int print_quote;
                 PUTS("[ ");  
                 for ( j = 0, ptr = BDY(mat)[i]; j < c; j++ ) {  void PRINTQUOTE(VL vl,QUOTE quote)
                         PRINTEXPR(vl,ptr[j]); PUTS(" ");  {
                 }    LIST list;
                 PUTS("]");  
                 if ( i < r - 1 )    if ( print_quote == 2 ) {
                         PUTS("\n");      PRINTFNODE(BDY(quote),0);
         }    } else if ( print_quote == 1 ) {
       /* XXX */
       fnodetotree(BDY(quote),&list);
       PRINTEXPR(vl,(Obj)list);
     } else {
       /* <...quoted...> */
       total_length += 20;
     }
 }  }
   
 void PRINTLIST(vl,list)  void PRINTQUOTEARG(VL vl,QUOTEARG quote)
 VL vl;  
 LIST list;  
 {  {
         NODE tnode;    /* XXX */
     /* <...quoted...> */
     total_length += 20;
   }
   
         PUTS("[");  void PRINTSYMBOL(SYMBOL sym)
         for ( tnode = (NODE)list->body; tnode; tnode = NEXT(tnode) ) {  {
                 PRINTEXPR(vl,tnode->body);    total_length += strlen(sym->name);
                 if ( NEXT(tnode) )  
                         PUTS(",");  
         }  
         PUTS("]");  
 }  }
   
 void PRINTSTR(str)  void PRINTTB(VL vl,TB p)
 STRING str;  
 {  {
         char *p;    int i;
   
         for ( p = BDY(str); *p; p++ )    for ( i = 0; i < p->next; i++ ) {
                 if ( *p == '"' )      total_length += strlen(p->body[i]);
                         PUTS("\"");    }
                 else {  
                         total_length += 1;  
                 }  
 }  }
   
 void PRINTCOMP(vl,c)  void PRINTUP2(UP2 p)
 VL vl;  
 COMP c;  
 {  {
         int n,i;    int d,i;
   
         n = getcompsize((int)c->type);    if ( !p ) {
         PUTS("{");      PUTS("0");
         for ( i = 0; i < n; i++ ) {    } else {
                 PRINTEXPR(vl,(pointer)c->member[i]);      d = degup2(p);
                 if ( i < n-1 )      PUTS("(");
                         PUTS(",");      if ( !d ) {
         }        PUTS("1");
         PUTS("}");      } else if ( d == 1 ) {
         PUTS("@");
       } else {
         PRINTHAT;
         total_length += 11;
       }
       for ( i = d-1; i >= 0; i-- ) {
         if ( p->b[i/BSH] & (1<<(i%BSH)) )
           if ( !i ) {
             PUTS("+1");
           } else if ( i == 1 ) {
             PUTS("+@");
           } else {
             PRINTHAT;
             total_length += 12;
           }
       }
       PUTS(")");
     }
 }  }
   
 void PRINTDP(vl,d)  void PRINTQOP(VL vl,F f)
 VL vl;  
 DP d;  
 {  {
         int n,i;    char *op;
         MP m;  
         DL dl;  
   
         for ( n = d->nv, m = BDY(d); m; m = NEXT(m) ) {    op = FOP(f)==AL_EX?"ex":"all";
                 PUTS("("); PRINTEXPR(vl,(pointer)m->c); PUTS(")*<<");    PUTS(op); PUTS(NAME(FQVR(f)));
                 for ( i = 0, dl = m->dl; i < n-1; i++ ) {    total_length += 2;
                         total_length += 11;    PRINTEXPR(vl,(Obj)FQMAT(f)); PUTS(")");
                 }  }
                 total_length += 10;  
                 PUTS(">>");  void PRINTUP(UP n)
                 if ( NEXT(m) )  {
                         PUTS("+");    int i,d;
         }  
     if ( !n )
       PUTS("0");
     else if ( !n->d )
       PRINTNUM(n->c[0]);
     else {
       d = n->d;
       PUTS("(");
       if ( !d ) {
         PRINTNUM(n->c[d]);
       } else if ( d == 1 ) {
         PRINTNUM(n->c[d]);
         PUTS("*@p");
       } else {
         PRINTNUM(n->c[d]);
         PRINTHAT;
         total_length += 13;
       }
       for ( i = d-1; i >= 0; i-- ) {
         if ( n->c[i] ) {
           PUTS("+("); PRINTNUM(n->c[i]); PUTS(")");
           if ( i >= 2 ) {
             PRINTHAT;
             total_length += 13;
           } else if ( i == 1 )
             PUTS("*@p");
         }
       }
       PUTS(")");
     }
   }
   
   void PRINTUM(UM n)
   {
     int i,d;
   
     if ( !n )
       PUTS("0");
     else if ( !n->d )
       PRINTSF(n->c[0]);
     else {
       d = n->d;
       PUTS("(");
       if ( !d ) {
         PRINTSF(n->c[d]);
       } else if ( d == 1 ) {
         PRINTSF(n->c[d]);
         PUTS("*@s");
       } else {
         PRINTSF(n->c[d]);
         PUTS("*@s"); PRINTHAT; total_length += 13;
       }
       for ( i = d-1; i >= 0; i-- ) {
         if ( n->c[i] ) {
           PUTS("+("); PRINTSF(n->c[i]); PUTS(")");
           if ( i >= 2 ) {
             PUTS("*@s"); PRINTHAT; total_length += 13;
           } else if ( i == 1 )
             PUTS("*@s");
         }
       }
       PUTS(")");
     }
   }
   
   void PRINTNBP(VL vl,NBP p)
   {
     NODE t;
     NBM m;
     int d,i;
     unsigned int *b;
     if ( !p ) PUTS("0");
     else {
       for ( t = BDY(p); t; t = NEXT(t) ) {
         m = (NBM)BDY(t);
         PRINTEXPR(vl,(Obj)m->c);
         d = m->d;
         b = m->b;
         if ( d )
           for ( i = 0; i < d; i++ ) {
             if ( NBM_GET(b,i) ) PUTS("x");
             else PUTS("y");
           }
         else PUTS("1");
         if ( NEXT(t) ) PUTS("+");
       }
     }
   }
   
   void PRINTSF(unsigned int i)
   {
     if ( !i ) {
       PUTS("0");
     } else
       total_length += 15;
   
   #ifndef CPRINT
   #define CPRINT
   #endif
 }  }

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.29

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