Trisurf Monte Carlo simulator
Samo Penic
2013-11-05 c58cd2c3a13498cd200a6e708181c3427e68bd30
src/timestep.c
@@ -31,7 +31,7 @@
ts_bool single_timestep(ts_vesicle *vesicle){
    ts_bool retval;
    ts_double rnvec[3];
    ts_uint i, b;
    ts_uint i;// b;
    for(i=0;i<vesicle->vlist->n;i++){
        rnvec[0]=drand48();
        rnvec[1]=drand48();
@@ -48,12 +48,8 @@
    }
//   ts_int cnt=0;
/*
    for(i=0;i<vesicle->vlist->n;i++){
//why is rnvec needed in bondflip?
/*        rnvec[0]=drand48();
        rnvec[1]=drand48();
        rnvec[2]=drand48();
*/
   b=rand() % vesicle->blist->n;
        //find a bond and return a pointer to a bond...
        //call single_bondflip_timestep...
@@ -61,6 +57,7 @@
//   if(retval==TS_SUCCESS) cnt++;        
    } 
//   printf("Bondflip success rate in one sweep: %d/%d=%e\n", cnt,vesicle->blist->n,(double)cnt/(double)vesicle->blist->n);
*/
   if(retval);
    return TS_SUCCESS;
}