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

Diff for /OpenXM_contrib2/asir2000/io/bsave.c between version 1.2 and 1.9

version 1.2, 2000/08/21 08:31:38 version 1.9, 2001/09/03 07:01:08
Line 23 
Line 23 
  * shall be made on your publication or presentation in any form of the   * shall be made on your publication or presentation in any form of the
  * results obtained by use of the SOFTWARE.   * results obtained by use of the SOFTWARE.
  * (4) In the event that you modify the SOFTWARE, you shall notify FLL by   * (4) In the event that you modify the SOFTWARE, you shall notify FLL by
  * e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification   * 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   * for such modification or the source code of the modified part of the
  * SOFTWARE.   * SOFTWARE.
  *   *
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_contrib2/asir2000/io/bsave.c,v 1.1.1.1 1999/12/03 07:39:11 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/bsave.c,v 1.8 2001/03/16 01:56:18 noro Exp $
 */  */
 /* saveXXX must not use GC_malloc(), GC_malloc_atomic(). */  /* saveXXX must not use GC_malloc(), GC_malloc_atomic(). */
   
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
 #if INET  
 #include "com.h"  #include "com.h"
 #endif  
   
 #if PARI  #if PARI
 #include "genpari.h"  #include "genpari.h"
Line 71  void saver(FILE *,R);
Line 69  void saver(FILE *,R);
 void savep(FILE *,P);  void savep(FILE *,P);
 void savegf2n(FILE *,GF2N);  void savegf2n(FILE *,GF2N);
 void savegfpn(FILE *,GFPN);  void savegfpn(FILE *,GFPN);
   void savegfs(FILE *,GFS);
 void savelm(FILE *,LM);  void savelm(FILE *,LM);
 void savemi(FILE *,MQ);  void savemi(FILE *,MQ);
 void savecplx(FILE *,C);  void savecplx(FILE *,C);
Line 80  void saveq(FILE *,Q);
Line 79  void saveq(FILE *,Q);
 void savenum(FILE *,Num);  void savenum(FILE *,Num);
 void savepfins(FILE *,V);  void savepfins(FILE *,V);
 void savegfmmat(FILE *,GFMMAT);  void savegfmmat(FILE *,GFMMAT);
   void savebytearray(FILE *,BYTEARRAY);
   void savegfsn(FILE *,GFSN);
   
 #define O_GF2MAT 12  
 #define O_MATHCAP 13  
 #define O_F 14  
 #define O_GFMMAT 15  
   
 void (*savef[])() = { 0, savenum, savep, saver, savelist, savevect,  void (*savef[])() = { 0, savenum, savep, saver, savelist, savevect,
         savemat, savestring, 0, savedp, saveui, saveerror,0,0,0,savegfmmat };          savemat, savestring, 0, savedp, saveui, saveerror,0,0,0,savegfmmat, savebytearray };
 void (*nsavef[])() = { saveq, savereal, 0, savebf, savecplx ,savemi, savelm, savegf2n, savegfpn};  #if defined(INTERVAL)
   void saveitv();
   void saveitvd();
   void (*nsavef[])() = { saveq, savereal, 0, savebf, saveitv, saveitvd, 0, saveitv, savecplx ,savemi, savelm, savegf2n, savegfpn, savegfs, savegfsn};
   #else
   void (*nsavef[])() = { saveq, savereal, 0, savebf, savecplx ,savemi, savelm, savegf2n, savegfpn, savegfs, savegfsn};
   #endif
   
 static short zeroval = 0;  static short zeroval = 0;
   
Line 174  BF p;
Line 176  BF p;
 #endif  #endif
 }  }
   
   #if defined(INTERVAL)
   void saveitv(s,p)
   FILE *s;
   Itv p;
   {
           saveobj(s,(Obj)INF(p));
           saveobj(s,(Obj)SUP(p));
   }
   
   void saveitvd(s,p)
   FILE *s;
   ItvD p;
   {
           write_double(s,&INF(p));
           write_double(s,&SUP(p));
   }
   #endif
   
 void savecplx(s,p)  void savecplx(s,p)
 FILE *s;  FILE *s;
 C p;  C p;
Line 218  GFPN p;
Line 238  GFPN p;
                 saveobj(s,(Obj)p->body->c[i]);                  saveobj(s,(Obj)p->body->c[i]);
 }  }
   
   void savegfs(s,p)
   FILE *s;
   GFS p;
   { write_int(s,&CONT(p)); }
   
   void savegfsn(s,p)
   FILE *s;
   GFSN p;
   {
           int d;
   
           d = DEG(BDY(p));
           write_int(s,&d);
           write_intarray(s,COEF(BDY(p)),d+1);
   }
   
 void savep(s,p)  void savep(s,p)
 FILE *s;  FILE *s;
 P p;  P p;
Line 373  GFMMAT p;
Line 409  GFMMAT p;
         write_short(s,&OID(p)); write_int(s,&p->row); write_int(s,&p->col);          write_short(s,&OID(p)); write_int(s,&p->row); write_int(s,&p->col);
         for ( i = 0, row = p->row, col = p->col; i < row; i++ )          for ( i = 0, row = p->row, col = p->col; i < row; i++ )
                 write_intarray(s,p->body[i],col);                  write_intarray(s,p->body[i],col);
   }
   
   void savebytearray(s,p)
   FILE *s;
   BYTEARRAY p;
   {
           write_short(s,&OID(p)); write_int(s,&p->len);
           write_string(s,p->body,p->len);
 }  }

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

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