Trisurf Monte Carlo simulator
Samo Penic
2013-11-24 439a4e0f10dd120b563039012d07eb5f1b3c8ded
src/timestep.h
@@ -1,5 +1,15 @@
#ifndef _TIMESTEP_H
#define _TIMESTEP_H
ts_bool single_timestep(ts_vesicle *vesicle);
#include<pthread.h>
typedef struct str_thdata
{
    ts_uint thread_no;
   ts_uint threads;
    ts_vesicle *vesicle;
} thdata;
void * single_timestep(void *thread_data);
ts_bool run_simulation(ts_vesicle *vesicle, ts_uint mcsweeps, ts_uint inititer, ts_uint iterations);
#endif