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

Diff for /OpenXM_contrib2/asir2000/io/pexpr_body.c between version 1.7 and 1.8

version 1.7, 2004/12/18 16:50:10 version 1.8, 2005/01/17 07:43:24
Line 1 
Line 1 
 /* $OpenXM: OpenXM_contrib2/asir2000/io/pexpr_body.c,v 1.6 2004/12/17 03:09:08 noro Exp $ */  /* $OpenXM: OpenXM_contrib2/asir2000/io/pexpr_body.c,v 1.7 2004/12/18 16:50:10 saito Exp $ */
   
 #define PRINTHAT (fortran_output?PUTS("**"):PUTS("^"))  #define PRINTHAT (fortran_output?PUTS("**"):PUTS("^"))
   
Line 323  IMAT xmat;
Line 323  IMAT xmat;
         for(j = 0; j < row; j++) {          for(j = 0; j < row; j++) {
                 PUTS("( ");                  PUTS("( ");
                 for(i = 0; i < col; i++) {                  for(i = 0; i < col; i++) {
                         cr = j * row + i;                          cr = j * col + i;
                         if( ent.cr == cr ) {                          if( ent.cr == cr ) {
                                 PRINTEXPR(vl, (pointer)ent.body); PUTS(" ");                                  PRINTEXPR(vl, (pointer)ent.body); PUTS(" ");
                                 GetNextIent(&Im, &ent, &c);                                  GetNextIent(&Im, &ent, &c);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

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