| version 1.13, 2001/10/09 01:36:20 |
version 1.30, 2018/03/29 07:50:06 |
|
|
| * 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_contrib2/asir2000/io/cpexpr.c,v 1.12 2001/09/03 07:01:08 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/io/cpexpr.c,v 1.29 2018/03/29 01:32:53 noro Exp $ |
| */ |
*/ |
| #include "ca.h" |
#include "ca.h" |
| #include "parse.h" |
#include "parse.h" |
| #include "al.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 hex_output,fortran_output,double_output,real_digit; |
| |
extern int hideargs,outputstyle; |
| |
static int total_length; |
| |
|
| #define PRINTHAT (fortran_output?PUTS("**"):PUTS("^")) |
|
| |
|
| #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 |
| Line 73 extern int hex_output,fortran_output,double_output,rea |
|
| Line 77 extern int hex_output,fortran_output,double_output,rea |
|
| #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 PRINTUI length_ui |
| #define PRINTGF2MAT length_gf2mat |
#define PRINTGF2MAT length_gf2mat |
| #define PRINTGFMMAT length_gfmmat |
#define PRINTGFMMAT length_gfmmat |
| #define PRINTBYTEARRAY length_bytearray |
#define PRINTBYTEARRAY length_bytearray |
| #define PRINTQUOTE length_QUOTE |
#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 PRINTERR length_err |
| #define PRINTLF length_lf |
#define PRINTLF length_lf |
| #define PRINTLOP length_lop |
#define PRINTLOP length_lop |
| Line 87 extern int hex_output,fortran_output,double_output,rea |
|
| Line 98 extern int hex_output,fortran_output,double_output,rea |
|
| #define PRINTUP length_up |
#define PRINTUP length_up |
| #define PRINTUM length_um |
#define PRINTUM length_um |
| #define PRINTSF length_sf |
#define PRINTSF length_sf |
| |
#define PRINTFARGS length_fargs |
| |
#define PRINTFNODENODE length_fnodenode |
| |
#define PRINTFNODE length_fnode |
| |
|
| void PRINTEXPR(); |
#include "pexpr_body.c" |
| void PRINTNUM(); |
|
| void PRINTN(); |
|
| void PRINTV(); |
|
| void PRINTP(); |
|
| void PRINTR(); |
|
| void PRINTLIST(); |
|
| void PRINTVECT(); |
|
| void PRINTMAT(); |
|
| void PRINTSTR(); |
|
| void PRINTCOMP(); |
|
| void PRINTDP(); |
|
| void PRINTUI(); |
|
| void PRINTGF2MAT(); |
|
| void PRINTGFMMAT(); |
|
| void PRINTBYTEARRAY(); |
|
| void PRINTQUOTE(); |
|
| void PRINTERR(); |
|
| void PRINTCPLX(); |
|
| void PRINTLM(); |
|
| void PRINTLF(); |
|
| void PRINTUP(); |
|
| void PRINTUM(); |
|
| void PRINTUP2(); |
|
| void PRINTFOP(); |
|
| void PRINTEOP(); |
|
| void PRINTLOP(); |
|
| void PRINTQOP(); |
|
| void PRINTSF(); |
|
| |
|
| |
/* special functions for estimating length */ |
| |
|
| static int total_length; |
static int total_length; |
| |
|
| int estimate_length(VL vl,pointer p) |
int estimate_length(VL vl,pointer p) |
| { |
{ |
| total_length = 0; |
total_length = 0; |
| PRINTEXPR(vl,p); |
PRINTEXPR(vl,p); |
| return total_length; |
return total_length; |
| } |
} |
| |
|
| #if PARI |
|
| void PRINTBF(BF a) |
void PRINTBF(BF a) |
| { |
{ |
| char *str; |
char *str; |
| char *GENtostr(); |
int dprec; |
| char *GENtostr0(); |
char fbuf[BUFSIZ]; |
| void myoutbrute(); |
|
| |
|
| if ( double_output ) { |
dprec = a->body->_mpfr_prec*0.30103; |
| str = GENtostr0(a->body,myoutbrute); |
sprintf(fbuf,"%%.%dR%c",dprec,(double_output==1)?'f':(double_output==2)?'e':'g'); |
| } else { |
mpfr_asprintf(&str,fbuf,a->body); |
| str = GENtostr(a->body); |
total_length += strlen(str); |
| } |
mpfr_free_str(str); |
| total_length += strlen(str); |
|
| free(str); |
|
| } |
} |
| #endif |
|
| |
|
| void PRINTEXPR(VL vl,pointer p) |
|
| { |
|
| if ( !p ) { |
|
| total_length++; |
|
| return; |
|
| } |
|
| |
|
| switch ( OID(p) ) { |
|
| case O_N: |
|
| PRINTNUM((Num)p); break; |
|
| case O_P: |
|
| PRINTP(vl,(P)p); break; |
|
| 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; |
|
| case O_USINT: |
|
| PRINTUI(vl,(USINT)p); break; |
|
| case O_GF2MAT: |
|
| PRINTGF2MAT(vl,(GF2MAT)p); break; |
|
| case O_ERR: |
|
| PRINTERR(vl,(ERR)p); break; |
|
| case O_MATHCAP: |
|
| PRINTLIST(vl,((MATHCAP)p)->body); break; |
|
| case O_F: |
|
| PRINTLF(vl,(F)p); break; |
|
| case O_GFMMAT: |
|
| PRINTGFMMAT(vl,(GFMMAT)p); break; |
|
| case O_BYTEARRAY: |
|
| PRINTBYTEARRAY(vl,(BYTEARRAY)p); break; |
|
| case O_QUOTE: |
|
| PRINTQUOTE(vl,(QUOTE)p); break; |
|
| default: |
|
| break; |
|
| } |
|
| } |
|
| |
|
| void PRINTN(N n) |
|
| { |
|
| double ceil(); |
|
| |
|
| if ( !n ) |
|
| PUTS("0"); |
|
| else if ( hex_output ) |
|
| total_length += 2+(int)(PL(n)*8); |
|
| else |
|
| total_length += (int)(ceil(0.31*((double)(BSH*PL(n))))+1); |
|
| } |
|
| |
|
| void PRINTNUM(Num q) |
void PRINTNUM(Num q) |
| { |
{ |
| if ( !q ) { |
DAlg d; |
| PUTS("0"); |
DP nm; |
| return; |
Q dn; |
| } |
|
| 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; |
|
| #if PARI |
|
| case N_B: |
|
| PRINTBF((BF)q); break; |
|
| #endif |
|
| 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; |
|
| default: |
|
| break; |
|
| } |
|
| } |
|
| |
|
| void PRINTCPLX(C a) |
if ( !q ) { |
| { |
PUTS("0"); |
| PUTS("("); |
return; |
| if ( a->r ) |
} |
| PRINTNUM(a->r); |
switch ( NID(q) ) { |
| if ( a->i ) { |
case N_Q: |
| if ( a->r && (compnum(0,a->i,0) > 0) ) |
if ( SGN((Q)q) == -1 ) |
| PUTS("+"); |
PUTS("-"); |
| PRINTNUM(a->i); PUTS("*@i"); |
PRINTN(NM((Q)q)); |
| } |
if ( !INT((Q)q) ) { |
| PUTS(")"); |
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 PRINTP(VL vl,P p) |
|
| { |
|
| V v; |
|
| DCP dc; |
|
| |
|
| if ( !p ) |
|
| PUTS("0"); |
|
| else if ( NUM(p) ) |
|
| PRINTNUM((Num)p); |
|
| else |
|
| 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) ) { |
|
| PRINTHAT; |
|
| 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)); |
|
| if (!DEG(NEXT(dc))) { |
|
| if ( NUM(t) ) { |
|
| if ( !mmono(t) ) |
|
| PUTS("+"); |
|
| } else { |
|
| if (!mmono(COEF(DC(t)))) |
|
| PUTS("+"); |
|
| } |
|
| } else { |
|
| if ( !mmono(t) ) |
|
| PUTS("+"); |
|
| } |
|
| } |
|
| } |
|
| } |
|
| |
|
| extern int hideargs; |
|
| |
|
| void PRINTV(VL vl,V v) |
void PRINTV(VL vl,V v) |
| { |
{ |
| PF pf; |
PF pf; |
| PFAD ad; |
PFAD ad; |
| int i; |
int i; |
| |
|
| if ( NAME(v) ) |
if ( NAME(v) ) |
| PUTS(NAME(v)); |
PUTS(NAME(v)); |
| else if ( (vid)v->attr == V_PF ) { |
else if ( (vid)v->attr == V_PF ) { |
| pf = ((PFINS)v->priv)->pf; ad = ((PFINS)v->priv)->ad; |
pf = ((PFINS)v->priv)->pf; ad = ((PFINS)v->priv)->ad; |
| if ( !strcmp(NAME(pf),"pow") ) { |
if ( !strcmp(NAME(pf),"pow") ) { |
| PUTS("("); PRINTR(vl,(R)ad[0].arg); PUTS(")"); PRINTHAT; PUTS("("); |
PUTS("(("); PRINTR(vl,(R)ad[0].arg); PUTS(")"); PRINTHAT; PUTS("("); |
| PRINTR(vl,(R)ad[1].arg); PUTS(")"); |
PRINTR(vl,(R)ad[1].arg); PUTS("))"); |
| } else if ( !pf->argc ) |
} else if ( !pf->argc ) |
| PUTS(NAME(pf)); |
PUTS(NAME(pf)); |
| else { |
else { |
| if ( hideargs ) { |
if ( hideargs ) { |
| for ( i = 0; i < pf->argc; i++ ) |
for ( i = 0; i < pf->argc; i++ ) |
| if ( ad[i].d ) |
if ( ad[i].d ) |
| break; |
break; |
| if ( i < pf->argc ) { |
if ( i < pf->argc ) { |
| PUTS(NAME(pf)); |
PUTS(NAME(pf)); |
| total_length += 11; /* XXX */ |
total_length += 11; /* XXX */ |
| for ( i = 1; i < pf->argc; i++ ) { |
for ( i = 1; i < pf->argc; i++ ) { |
| total_length += 11; /* XXX */ |
total_length += 11; /* XXX */ |
| } |
} |
| PUTS("}"); |
PUTS("}"); |
| } else { |
} else { |
| PUTS(NAME(pf)); |
PUTS(NAME(pf)); |
| total_length += 1; /* XXX */ |
total_length += 1; /* XXX */ |
| } |
} |
| } else { |
} else { |
| for ( i = 0; i < pf->argc; i++ ) |
for ( i = 0; i < pf->argc; i++ ) |
| if ( ad[i].d ) |
if ( ad[i].d ) |
| break; |
break; |
| if ( i < pf->argc ) { |
if ( i < pf->argc ) { |
| PUTS(NAME(pf)); |
PUTS(NAME(pf)); |
| total_length += 11; /* XXX */ |
total_length += 11; /* XXX */ |
| for ( i = 1; i < pf->argc; i++ ) { |
for ( i = 1; i < pf->argc; i++ ) { |
| total_length += 11; /* XXX */ |
total_length += 11; /* XXX */ |
| } |
} |
| PUTS(")("); |
PUTS(")("); |
| } else { |
} else { |
| PUTS(NAME(pf)); |
PUTS(NAME(pf)); |
| total_length += 1; /* XXX */ |
total_length += 1; /* XXX */ |
| } |
} |
| PRINTR(vl,(R)ad[0].arg); |
PRINTR(vl,(R)ad[0].arg); |
| for ( i = 1; i < pf->argc; i++ ) { |
for ( i = 1; i < pf->argc; i++ ) { |
| PUTS(","); PRINTR(vl,(R)ad[i].arg); |
PUTS(","); PRINTR(vl,(R)ad[i].arg); |
| } |
} |
| PUTS(")"); |
PUTS(")"); |
| } |
} |
| } |
} |
| } |
} |
| } |
} |
| |
|
| void PRINTR(VL vl,R a) |
void PRINTN(N n) |
| { |
{ |
| if ( !a ) |
double ceil(); |
| 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 vl,VECT vect) |
if ( !n ) |
| { |
PUTS("0"); |
| int i; |
else if ( hex_output ) |
| pointer *ptr; |
total_length += 2+(int)(PL(n)*8); |
| |
else |
| PUTS("[ "); |
total_length += (int)(ceil(0.31*((double)(BSH*PL(n))))+1); |
| for ( i = 0, ptr = BDY(vect); i < vect->len; i++ ) { |
|
| PRINTEXPR(vl,ptr[i]); PUTS(" "); |
|
| } |
|
| PUTS("]"); |
|
| } |
} |
| |
|
| void PRINTMAT(VL vl,MAT mat) |
|
| { |
|
| int i,j,r,c; |
|
| pointer *ptr; |
|
| |
|
| for ( i = 0, r = mat->row, c = mat->col; i < r; i++ ) { |
|
| PUTS("[ "); |
|
| for ( j = 0, ptr = BDY(mat)[i]; j < c; j++ ) { |
|
| PRINTEXPR(vl,ptr[j]); PUTS(" "); |
|
| } |
|
| PUTS("]"); |
|
| if ( i < r - 1 ) |
|
| PUTS("\n"); |
|
| } |
|
| } |
|
| |
|
| void PRINTLIST(VL vl,LIST list) |
|
| { |
|
| NODE tnode; |
|
| |
|
| PUTS("["); |
|
| for ( tnode = (NODE)list->body; tnode; tnode = NEXT(tnode) ) { |
|
| PRINTEXPR(vl,tnode->body); |
|
| if ( NEXT(tnode) ) |
|
| PUTS(","); |
|
| } |
|
| PUTS("]"); |
|
| } |
|
| |
|
| void PRINTSTR(STRING str) |
void PRINTSTR(STRING str) |
| { |
{ |
| char *p; |
char *p; |
| |
|
| for ( p = BDY(str); *p; p++ ) |
for ( p = BDY(str); *p; p++ ) |
| if ( *p == '"' ) |
if ( *p == '"' ) |
| PUTS("\""); |
PUTS("\""); |
| else { |
else { |
| total_length += 1; |
total_length += 1; |
| } |
} |
| } |
} |
| |
|
| void PRINTCOMP(VL vl,COMP c) |
void PRINTDP(VL vl,DP d) |
| { |
{ |
| int n,i; |
int n,i; |
| |
MP m; |
| |
DL dl; |
| |
|
| n = getcompsize((int)c->type); |
for ( n = d->nv, m = BDY(d); m; m = NEXT(m) ) { |
| PUTS("{"); |
PUTS("("); PRINTEXPR(vl,(pointer)m->c); PUTS(")*<<"); |
| for ( i = 0; i < n; i++ ) { |
for ( i = 0, dl = m->dl; i < n-1; i++ ) { |
| PRINTEXPR(vl,(pointer)c->member[i]); |
total_length += 11; |
| if ( i < n-1 ) |
} |
| PUTS(","); |
total_length += 10; |
| } |
PUTS(">>"); |
| PUTS("}"); |
if ( NEXT(m) ) |
| |
PUTS("+"); |
| |
} |
| } |
} |
| |
|
| void PRINTDP(VL vl,DP d) |
void PRINTDPM(VL vl,DPM d) |
| { |
{ |
| int n,i; |
int n,i; |
| MP m; |
DMM m; |
| DL dl; |
DL dl; |
| |
|
| for ( n = d->nv, m = BDY(d); m; m = NEXT(m) ) { |
for ( n = d->nv, m = BDY(d); m; m = NEXT(m) ) { |
| PUTS("("); PRINTEXPR(vl,(pointer)m->c); PUTS(")*<<"); |
PUTS("("); PRINTEXPR(vl,(pointer)m->c); PUTS(")*<<"); |
| for ( i = 0, dl = m->dl; i < n-1; i++ ) { |
for ( i = 0, dl = m->dl; i < n-1; i++ ) { |
| total_length += 11; |
total_length += 11; |
| } |
} |
| total_length += 10; |
total_length += 10; |
| PUTS(">>"); |
total_length += 11; /* for ':pos' */ |
| if ( NEXT(m) ) |
PUTS(">>"); |
| PUTS("+"); |
if ( NEXT(m) ) |
| } |
PUTS("+"); |
| |
} |
| } |
} |
| |
|
| |
|
| void PRINTUI(VL vl,USINT u) |
void PRINTUI(VL vl,USINT u) |
| { |
{ |
| total_length += 10; |
total_length += 10; |
| } |
} |
| |
|
| void PRINTGF2MAT(VL vl,GF2MAT mat) |
|
| { |
|
| int row,col,w,i,j,k,m; |
|
| unsigned int t; |
|
| unsigned int **b; |
|
| |
|
| row = mat->row; |
|
| col = mat->col; |
|
| w = (col+BSH-1)/BSH; |
|
| b = mat->body; |
|
| for ( i = 0; i < row; i++ ) { |
|
| for ( j = 0, m = 0; j < w; j++ ) { |
|
| t = b[i][j]; |
|
| for ( k = 0; m < col && k < BSH; k++, m++ ) |
|
| if ( t & (1<<k) ) |
|
| PUTS("1"); |
|
| else |
|
| PUTS("0"); |
|
| } |
|
| PUTS("\n"); |
|
| } |
|
| } |
|
| |
|
| void PRINTGFMMAT(VL vl,GFMMAT mat) |
void PRINTGFMMAT(VL vl,GFMMAT mat) |
| { |
{ |
| int row,col,i,j; |
int row,col,i,j; |
| unsigned int **b; |
unsigned int **b; |
| |
|
| row = mat->row; |
row = mat->row; |
| col = mat->col; |
col = mat->col; |
| b = mat->body; |
b = mat->body; |
| for ( i = 0; i < row; i++ ) { |
for ( i = 0; i < row; i++ ) { |
| PUTS("["); |
PUTS("["); |
| for ( j = 0; j < col; j++ ) { |
for ( j = 0; j < col; j++ ) { |
| total_length += 10; /* XXX */ |
total_length += 10; /* XXX */ |
| } |
} |
| PUTS("]\n"); |
PUTS("]\n"); |
| } |
} |
| } |
} |
| |
|
| void PRINTBYTEARRAY(VL vl,BYTEARRAY array) |
void PRINTBYTEARRAY(VL vl,BYTEARRAY array) |
| { |
{ |
| /* |xx xx ... xx| */ |
/* |xx xx ... xx| */ |
| total_length += 1+3*array->len; |
total_length += 1+3*array->len; |
| } |
} |
| |
|
| |
extern int print_quote; |
| |
|
| void PRINTQUOTE(VL vl,QUOTE quote) |
void PRINTQUOTE(VL vl,QUOTE quote) |
| { |
{ |
| /* <...quoted...> */ |
LIST list; |
| total_length += 20; |
|
| } |
|
| |
|
| void PRINTERR(VL vl,ERR e) |
if ( print_quote == 2 ) { |
| { |
PRINTFNODE(BDY(quote),0); |
| PUTS("error("); PRINTEXPR(vl,e->body); PUTS(")"); |
} else if ( print_quote == 1 ) { |
| |
/* XXX */ |
| |
fnodetotree(BDY(quote),&list); |
| |
PRINTEXPR(vl,(Obj)list); |
| |
} else { |
| |
/* <...quoted...> */ |
| |
total_length += 20; |
| |
} |
| } |
} |
| |
|
| void PRINTUP2(UP2 p) |
void PRINTQUOTEARG(VL vl,QUOTEARG quote) |
| { |
{ |
| int d,i; |
/* XXX */ |
| |
/* <...quoted...> */ |
| if ( !p ) { |
total_length += 20; |
| PUTS("0"); |
|
| } else { |
|
| d = degup2(p); |
|
| PUTS("("); |
|
| if ( !d ) { |
|
| PUTS("1"); |
|
| } 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 PRINTLF(VL vl,F f) |
void PRINTSYMBOL(SYMBOL sym) |
| { |
{ |
| switch ( FOP(f) ) { |
total_length += strlen(sym->name); |
| case AL_TRUE: |
|
| PUTS("@true"); |
|
| break; |
|
| case AL_FALSE: |
|
| PUTS("@false"); |
|
| break; |
|
| |
|
| case AL_OR: case AL_AND: |
|
| PRINTFOP(vl,f); break; |
|
| case AL_NOT: case AL_IMPL: case AL_REPL: case AL_EQUIV: |
|
| PRINTEOP(vl,f); break; |
|
| |
|
| case AL_EQUAL: case AL_NEQ: case AL_LESSP: |
|
| case AL_GREATERP: case AL_LEQ: case AL_GEQ: |
|
| PRINTLOP(vl,f); break; |
|
| |
|
| case AL_EX: case AL_ALL: |
|
| PRINTQOP(vl,f); break; |
|
| default: |
|
| break; |
|
| } |
|
| } |
} |
| |
|
| void PRINTFOP(VL vl,F f) |
void PRINTTB(VL vl,TB p) |
| { |
{ |
| char *op; |
int i; |
| NODE n; |
|
| |
|
| op = FOP(f)==AL_OR?" @|| ":" @&& "; |
for ( i = 0; i < p->next; i++ ) { |
| n = FJARG(f); |
total_length += strlen(p->body[i]); |
| PUTS("("); PRINTEXPR(vl,BDY(n)); PUTS(")"); |
} |
| for ( n = NEXT(n); n; n = NEXT(n) ) { |
|
| PUTS(op); PUTS("("); PRINTEXPR(vl,BDY(n)); PUTS(")"); |
|
| } |
|
| } |
} |
| |
|
| void PRINTEOP(VL vl,F f) |
void PRINTUP2(UP2 p) |
| { |
{ |
| oFOP op; |
int d,i; |
| char *sop; |
|
| |
|
| if ( (op = FOP(f)) == AL_NOT ) { |
if ( !p ) { |
| PUTS("(@! "); PRINTEXPR(vl,(Obj)FARG(f)); PUTS(")"); return; |
PUTS("0"); |
| } |
} else { |
| switch ( op ) { |
d = degup2(p); |
| case AL_IMPL: |
PUTS("("); |
| sop = " @impl "; break; |
if ( !d ) { |
| case AL_REPL: |
PUTS("1"); |
| sop = " @repl "; break; |
} else if ( d == 1 ) { |
| case AL_EQUIV: |
PUTS("@"); |
| sop = " @equiv "; break; |
} else { |
| default: |
PRINTHAT; |
| break; |
total_length += 11; |
| } |
} |
| PUTS("("); |
for ( i = d-1; i >= 0; i-- ) { |
| PRINTEXPR(vl,(Obj)FLHS(f)); |
if ( p->b[i/BSH] & (1<<(i%BSH)) ) |
| PUTS(sop); |
if ( !i ) { |
| PRINTEXPR(vl,(Obj)FRHS(f)); |
PUTS("+1"); |
| PUTS(")"); |
} else if ( i == 1 ) { |
| |
PUTS("+@"); |
| |
} else { |
| |
PRINTHAT; |
| |
total_length += 12; |
| |
} |
| |
} |
| |
PUTS(")"); |
| |
} |
| } |
} |
| |
|
| void PRINTLOP(VL vl,F f) |
|
| { |
|
| char *op; |
|
| |
|
| switch ( FOP(f) ) { |
|
| case AL_EQUAL: |
|
| op = " @== "; break; |
|
| case AL_NEQ: |
|
| op = " @!= "; break; |
|
| case AL_LESSP: |
|
| op = " @< "; break; |
|
| case AL_GREATERP: |
|
| op = " @> "; break; |
|
| case AL_LEQ: |
|
| op = " @<= "; break; |
|
| case AL_GEQ: |
|
| op = " @>= "; break; |
|
| default: |
|
| error("PRINTLOP : invalid operator"); |
|
| break; |
|
| } |
|
| PRINTEXPR(vl,(Obj)FPL(f)); PUTS(op); PUTS("0"); |
|
| } |
|
| |
|
| void PRINTQOP(VL vl,F f) |
void PRINTQOP(VL vl,F f) |
| { |
{ |
| char *op; |
char *op; |
| |
|
| op = FOP(f)==AL_EX?"ex":"all"; |
op = FOP(f)==AL_EX?"ex":"all"; |
| PUTS(op); PUTS(NAME(FQVR(f))); |
PUTS(op); PUTS(NAME(FQVR(f))); |
| total_length += 2; |
total_length += 2; |
| PRINTEXPR(vl,(Obj)FQMAT(f)); PUTS(")"); |
PRINTEXPR(vl,(Obj)FQMAT(f)); PUTS(")"); |
| } |
} |
| |
|
| void PRINTUP(UP n) |
void PRINTUP(UP n) |
| { |
{ |
| int i,d; |
int i,d; |
| |
|
| if ( !n ) |
if ( !n ) |
| PUTS("0"); |
PUTS("0"); |
| else if ( !n->d ) |
else if ( !n->d ) |
| PRINTNUM(n->c[0]); |
PRINTNUM(n->c[0]); |
| else { |
else { |
| d = n->d; |
d = n->d; |
| PUTS("("); |
PUTS("("); |
| if ( !d ) { |
if ( !d ) { |
| PRINTNUM(n->c[d]); |
PRINTNUM(n->c[d]); |
| } else if ( d == 1 ) { |
} else if ( d == 1 ) { |
| PRINTNUM(n->c[d]); |
PRINTNUM(n->c[d]); |
| PUTS("*@p"); |
PUTS("*@p"); |
| } else { |
} else { |
| PRINTNUM(n->c[d]); |
PRINTNUM(n->c[d]); |
| PRINTHAT; |
PRINTHAT; |
| total_length += 13; |
total_length += 13; |
| } |
} |
| for ( i = d-1; i >= 0; i-- ) { |
for ( i = d-1; i >= 0; i-- ) { |
| if ( n->c[i] ) { |
if ( n->c[i] ) { |
| PUTS("+("); PRINTNUM(n->c[i]); PUTS(")"); |
PUTS("+("); PRINTNUM(n->c[i]); PUTS(")"); |
| if ( i >= 2 ) { |
if ( i >= 2 ) { |
| PRINTHAT; |
PRINTHAT; |
| total_length += 13; |
total_length += 13; |
| } else if ( i == 1 ) |
} else if ( i == 1 ) |
| PUTS("*@p"); |
PUTS("*@p"); |
| } |
} |
| } |
} |
| PUTS(")"); |
PUTS(")"); |
| } |
} |
| } |
} |
| |
|
| void PRINTUM(UM n) |
void PRINTUM(UM n) |
| { |
{ |
| int i,d; |
int i,d; |
| |
|
| if ( !n ) |
if ( !n ) |
| PUTS("0"); |
PUTS("0"); |
| else if ( !n->d ) |
else if ( !n->d ) |
| PRINTSF(n->c[0]); |
PRINTSF(n->c[0]); |
| else { |
else { |
| d = n->d; |
d = n->d; |
| PUTS("("); |
PUTS("("); |
| if ( !d ) { |
if ( !d ) { |
| PRINTSF(n->c[d]); |
PRINTSF(n->c[d]); |
| } else if ( d == 1 ) { |
} else if ( d == 1 ) { |
| PRINTSF(n->c[d]); |
PRINTSF(n->c[d]); |
| PUTS("*@s"); |
PUTS("*@s"); |
| } else { |
} else { |
| PRINTSF(n->c[d]); |
PRINTSF(n->c[d]); |
| PUTS("*@s"); PRINTHAT; total_length += 13; |
PUTS("*@s"); PRINTHAT; total_length += 13; |
| } |
} |
| for ( i = d-1; i >= 0; i-- ) { |
for ( i = d-1; i >= 0; i-- ) { |
| if ( n->c[i] ) { |
if ( n->c[i] ) { |
| PUTS("+("); PRINTSF(n->c[i]); PUTS(")"); |
PUTS("+("); PRINTSF(n->c[i]); PUTS(")"); |
| if ( i >= 2 ) { |
if ( i >= 2 ) { |
| PUTS("*@s"); PRINTHAT; total_length += 13; |
PUTS("*@s"); PRINTHAT; total_length += 13; |
| } else if ( i == 1 ) |
} else if ( i == 1 ) |
| PUTS("*@s"); |
PUTS("*@s"); |
| } |
} |
| } |
} |
| PUTS(")"); |
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) |
void PRINTSF(unsigned int i) |
| { |
{ |
| if ( !i ) { |
if ( !i ) { |
| PUTS("0"); |
PUTS("0"); |
| } else |
} else |
| total_length += 15; |
total_length += 15; |
| |
|
| |
#ifndef CPRINT |
| |
#define CPRINT |
| |
#endif |
| } |
} |