Trisurf Monte Carlo simulator
Samo Penic
2016-03-01 86b69b3803b1b31c040cede6b47bf617561b3b81
src/snapshot.c
@@ -7,7 +7,7 @@
#include<inttypes.h>
#include<config.h>
#include <time.h>
#include "io.h"
/* a helper function that utilizes ts_string data structure and performs same as sprintf */
ts_uint ts_sprintf(ts_string *str, char *fmt, ...){
   va_list ap;
@@ -56,7 +56,7 @@
   fprintf(fh, "<dumpdate>%s</dumpdate>\n", c_time_string);
   fprintf(fh, "<tape>\n");
      fprintf(fh,"%s",tapetxt);
   fprintf(fh, "</tape>\n");
   if(vesicle->poly_list!=NULL){
      npoly=vesicle->poly_list->n;
@@ -69,7 +69,7 @@
      npoly=0;
      nfono=0;
   }
   fprintf(fh, "<trisurf nvtx=\"%u\" npoly=\"%u\" nfono=\"%u\">\n", vesicle->vlist->n, npoly, nfono);
   fprintf(fh, "<trisurf nvtx=\"%u\" npoly=\"%u\" nmono=\"%u\" compressed=\"false\">\n", vesicle->vlist->n, npoly, nfono);
   return TS_SUCCESS;
}