Trisurf Monte Carlo simulator
Samo Penic
2018-09-25 5eefcc281fda031d322599fd7094da4fc8450948
src/io.c
@@ -1185,6 +1185,9 @@
   CFG_SIMPLE_FLOAT("c0",&tape->c0),
   CFG_SIMPLE_FLOAT("w",&tape->w),
   CFG_SIMPLE_FLOAT("F",&tape->F),
   CFG_SIMPLE_INT("plane_confinement_switch", &tape->plane_confinement_switch),
   CFG_SIMPLE_FLOAT("plane_d", &tape->plane_d),
   CFG_SIMPLE_FLOAT("plane_F", &tape->plane_F),
        CFG_END()
    };
    cfg_t *cfg;    
@@ -1219,6 +1222,8 @@
ts_bool getcmdline_tape(cfg_t *cfg, char *opts){
   char *commands, *backup, *saveptr, *saveopptr, *command, *operator[2];
   operator[0]=0;
   operator[1]=0;
   ts_uint i,j;
   commands=(char *)malloc(10000*sizeof(char));
    backup=commands; //since the pointer to commands will be lost, we acquire a pointer that will serve as backup.